mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-18 05:16:30 +00:00
11 lines
337 B
Plaintext
11 lines
337 B
Plaintext
--TEST--
|
|
Calling a macro without parentheses is forbidden
|
|
--TEMPLATE--
|
|
{% import _self as macros %}
|
|
{{ macros.hello }}
|
|
{% macro hello() %}Hello{% endmacro %}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\SyntaxError: Omitting parentheses when calling a macro is not allowed; add parentheses after the macro name in "index.twig" at line 3.
|