mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-11 18:06:46 +00:00
14 lines
369 B
Plaintext
14 lines
369 B
Plaintext
--TEST--
|
|
"enum" function with invalid dynamic enum class
|
|
--CONDITION--
|
|
\PHP_VERSION_ID >= 80100
|
|
--TEMPLATE--
|
|
{% set from_variable = 'Twig\\Tests\\NonExistentEnum' %}
|
|
{% for c in enum(from_variable).cases() %}
|
|
{{~ c.name }}
|
|
{% endfor %}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: "Twig\Tests\NonExistentEnum" is not an enum in "index.twig" at line 3.
|