mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-14 03:16:34 +00:00
12 lines
314 B
Plaintext
12 lines
314 B
Plaintext
--TEST--
|
|
macro called with a dynamic name that does not resolve to a known macro
|
|
--TEMPLATE--
|
|
{% import _self as macros %}
|
|
|
|
{% set name = 'unknown' %}
|
|
{{ macros.(name)() }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Macro "unknown" is not defined in template "index.twig" in "index.twig" at line 5.
|