431473707b7267d627c71babeb7402e93d2ef19e
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / tags / embed / error_line.test
1 --TEST--
2 "embed" tag
3 --TEMPLATE(index.twig)--
4 FOO
5 {% embed "foo.twig" %}
6     {% block c1 %}
7         {{ nothing }}
8     {% endblock %}
9 {% endembed %}
10 BAR
11 --TEMPLATE(foo.twig)--
12 {% block c1 %}{% endblock %}
13 --DATA--
14 return array()
15 --EXCEPTION--
16 Twig_Error_Runtime: Variable "nothing" does not exist in "index.twig" at line 5.