mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 11:56:50 +00:00
13 lines
296 B
Plaintext
13 lines
296 B
Plaintext
--TEST--
|
|
Exception thrown from a child for an extension error
|
|
--TEMPLATE--
|
|
{% extends 'base.twig' %}
|
|
--TEMPLATE(base.twig)--
|
|
|
|
|
|
{{ random([]) }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: The "random" function cannot pick from an empty sequence or mapping in "base.twig" at line 4.
|