mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 02:46:29 +00:00
19 lines
224 B
Plaintext
19 lines
224 B
Plaintext
--TEST--
|
|
macro
|
|
--TEMPLATE--
|
|
{% import _self as macros %}
|
|
|
|
{% macro foo(data) %}
|
|
{{ data }}
|
|
{% endmacro %}
|
|
|
|
{% macro bar() %}
|
|
<br />
|
|
{% endmacro %}
|
|
|
|
{{ macros.foo(macros.bar()) }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
<br />
|