1--TEST--
2sandbox tag
3--TEMPLATE--
4{%- sandbox %}
5    {%- include "foo.twig" %}
6{%- endsandbox %}
7--TEMPLATE(foo.twig)--
8{{ [a][0] }}
9{{ dump([a][0]) }}
10--DATA--
11return ['a' => 'b']
12--CONFIG--
13return ['autoescape' => false, 'debug' => true]
14--EXPECT--
15b
16string(1) "b"
17