mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-29 03:26:56 +00:00
19 lines
302 B
Plaintext
19 lines
302 B
Plaintext
--TEST--
|
|
Exception for multiline array with undefined variable
|
|
--TEMPLATE--
|
|
{% set foo = {
|
|
foo: 'foo',
|
|
bar: 'bar',
|
|
|
|
|
|
foobar: foobar,
|
|
|
|
|
|
|
|
foo2: foo2,
|
|
} %}
|
|
--DATA--
|
|
return ['foobar' => 'foobar']
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Variable "foo2" does not exist in "index.twig" at line 11.
|