1--TEST--
2nested "with" tags
3--TEMPLATE--
4{% set foo, bar = 'foo', 'bar' %}
5{% with {bar: 'BAZ'} %}
6    {% with {foo: 'FOO'} %}
7        {{ foo }}{{ bar }}
8    {% endwith %}
9{% endwith %}
10{{ foo }}{{ bar }}
11--DATA--
12return []
13--EXPECT--
14FOOBAZ
15    foobar
16