mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 20:36:33 +00:00
11 lines
291 B
Plaintext
11 lines
291 B
Plaintext
--TEST--
|
|
macro arguments without a default value are required
|
|
--TEMPLATE--
|
|
{% from _self import test %}
|
|
{% macro test(a, b) %}{% endmacro %}
|
|
{{ test() }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Value for argument "a" is required for macro "test" in "index.twig" at line 4.
|