mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 10:56:38 +00:00
10 lines
285 B
Plaintext
10 lines
285 B
Plaintext
--TEST--
|
|
macro called with a dynamic name coerces the name before lookup
|
|
--TEMPLATE--
|
|
{% import _self as macros %}
|
|
{{ macros.(name)() }}
|
|
--DATA--
|
|
return ['name' => null]
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Macro "" is not defined in template "index.twig" in "index.twig" at line 3.
|