1--TEST--
2"include" function allows expressions for the template to include
3--TEMPLATE--
4FOO
5{{ include(foo) }}
6
7BAR
8--TEMPLATE(foo.twig)--
9FOOBAR
10--DATA--
11return ['foo' => 'foo.twig']
12--EXPECT--
13FOO
14
15FOOBAR
16
17BAR
18