Files
Twig/tests/Fixtures/exceptions/syntax_error_in_reused_template.test
2026-06-05 20:28:45 +02:00

11 lines
316 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 "number" of value "5" ("end of statement block" expected) in "foo.twig" at line 3 column 21.