mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-31 04:27:00 +00:00
10 lines
250 B
Plaintext
10 lines
250 B
Plaintext
--TEST--
|
|
Exception for an undefined trait
|
|
--TEMPLATE--
|
|
{% use 'foo' with foobar as bar %}
|
|
--TEMPLATE(foo)--
|
|
{% block bar %}
|
|
{% endblock %}
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Block "foobar" is not defined in trait "foo" in "index.twig" at line 2.
|