Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / exceptions / syntax_error_in_reused_template.test
1 --TEST--
2 Exception for syntax error in reused template
3 --TEMPLATE--
4 {% use 'foo.twig' %}
5 --TEMPLATE(foo.twig)--
6 {% block bar %}
7     {% do node.data = 5 %}
8 {% endblock %}
9 --EXCEPTION--
10 Twig_Error_Syntax: Unexpected token "operator" of value "=" ("end of statement block" expected) in "foo.twig" at line 3.