mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-05 15:07:11 +00:00
13 lines
308 B
Plaintext
13 lines
308 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 sequence or mapping in "content.twig" at line 4.
|