Files
Twig/tests/Fixtures/macros/extra_arguments.test
2026-07-30 14:14:10 +02:00

11 lines
303 B
Plaintext

--TEST--
macro rejects extra arguments without an explicit variadic argument
--TEMPLATE--
{% from _self import test %}
{% macro test(value) %}{% endmacro %}
{{ test("foo", "bar") }}
--DATA--
return []
--EXCEPTION--
Twig\Error\RuntimeError: Too many arguments for macro "test" in "index.twig" at line 4.