mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-05 06:56:51 +00:00
11 lines
310 B
Plaintext
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.
|