Files
Twig/tests/Fixtures/macros/variadic_reserved_name.test
2026-07-30 13:53:24 +02:00

15 lines
332 B
Plaintext

--TEST--
macro with an explicit variadic argument using a reserved name
--TEMPLATE--
{% from _self import row %}
{% macro row(label, ...context) -%}
{{ label }}:{% for key, value in context %} {{ key }}={{ value }}{% endfor %}
{%- endmacro %}
{{ row("attrs", 1, id: "main") }}
--DATA--
return []
--EXPECT--
attrs: 0=1 id=main