Files
Twig/tests/Fixtures/exceptions/syntax_error_in_reused_template.test
2019-06-30 14:51:54 +02:00

11 lines
310 B
Plaintext

--TEST--
Exception for syntax error in reused template
--TEMPLATE--
{% use 'foo.twig' %}
--TEMPLATE(foo.twig)--
{% block bar %}
{% do node.data = 5 %}
{% endblock %}
--EXCEPTION--
Twig\Error\SyntaxError: Unexpected token "operator" of value "=" ("end of statement block" expected) in "foo.twig" at line 3.