1--TEST--
2Exception for multiline array with undefined variable
3--TEMPLATE--
4{% set foo = {
5   foo: 'foo',
6   bar: 'bar',
7
8
9   foobar: foobar,
10
11
12
13   foo2: foo2,
14} %}
15--DATA--
16return ['foobar' => 'foobar']
17--EXCEPTION--
18Twig\Error\RuntimeError: Variable "foo2" does not exist in "index.twig" at line 11.
19