mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 12:26:30 +00:00
12 lines
340 B
Plaintext
12 lines
340 B
Plaintext
--TEST--
|
|
Defining a macro more than once is forbidden
|
|
--TEMPLATE--
|
|
{% import _self as macros %}
|
|
{% macro greet() %}first{% endmacro %}
|
|
{% macro greet() %}second{% endmacro %}
|
|
{{ macros.greet() }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\SyntaxError: Macro "greet" is defined twice (first definition at line 3) in "index.twig" at line 4.
|