mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-14 03:16:34 +00:00
11 lines
303 B
Plaintext
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.
|