mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 10:26:32 +00:00
12 lines
337 B
Plaintext
12 lines
337 B
Plaintext
--TEST--
|
|
"enum_cases" function with invalid dynamic enum class
|
|
--TEMPLATE--
|
|
{% set from_variable = 'Twig\Tests\NonExistentEnum' %}
|
|
{% for c in enum_cases(from_variable) %}
|
|
{{~ c.name }}
|
|
{% endfor %}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Enum "Twig\Tests\NonExistentEnum" does not exist in "index.twig" at line 3.
|