1--TEST--
2"template_from_string" function works in an "include"
3--TEMPLATE--
4{% set embed = '{% embed "embed.twig" %}{% endembed %}' %}
5{{ include(template_from_string(embed)) }}
6--TEMPLATE(embed.twig)--
7Cool
8--DATA--
9return []
10--EXPECT--
11Cool
12