1--TEST--
2"with" tag with expression and only
3--TEMPLATE--
4{% with {foo: 'foo', bar: 'BAZ'} only %}
5    {{ foo }}{{ bar }}{{ baz }}
6{% endwith %}
7--DATA--
8return ['foo' => 'baz', 'baz' => 'baz']
9--EXCEPTION--
10Twig\Error\RuntimeError: Variable "baz" does not exist in "index.twig" at line 3.
11