mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 10:56:38 +00:00
11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
--TEST--
|
|
macro
|
|
--TEMPLATE--
|
|
{% import _self as macros %}
|
|
|
|
{{ macros.unknown() }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Macro "unknown" is not defined in template "index.twig" in "index.twig" at line 4.
|