mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-10 09:26:29 +00:00
13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
--TEST--
|
|
Exception thrown from an include for an extension error
|
|
--TEMPLATE--
|
|
{% include 'content.twig' %}
|
|
--TEMPLATE(content.twig)--
|
|
|
|
|
|
{{ random([]) }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: The random function cannot pick from an empty array in "content.twig" at line 4.
|