1--TEST--
2"include" tag sandboxed
3--TEMPLATE--
4{{ include("foo.twig", sandboxed = true) }}
5{{ include("bar.twig") }}
6--TEMPLATE(foo.twig)--
7foo
8--TEMPLATE(bar.twig)--
9{{ foo|e }}
10--DATA--
11return ['foo' => 'bar<br />']
12--EXPECT--
13foo
14
15
16bar&lt;br /&gt;
17