mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 03:46:39 +00:00
19 lines
221 B
Plaintext
19 lines
221 B
Plaintext
--TEST--
|
|
Twig supports the string operators as variable names in assignments
|
|
--TEMPLATE--
|
|
{% for matches in [1, 2] %}
|
|
{{- matches }}
|
|
{% endfor %}
|
|
|
|
{% set matches = [1, 2] %}
|
|
|
|
OK
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
1
|
|
2
|
|
|
|
|
|
OK
|