1--TEST--
2Exception with bad line number
3--TEMPLATE--
4{% block content %}
5    {{ foo }}
6    {{ include("foo") }}
7{% endblock %}
8index
9--TEMPLATE(foo)--
10foo
11{{ foo.bar }}
12--DATA--
13return ['foo' => 'foo']
14--EXCEPTION--
15Twig\Error\RuntimeError: Impossible to access an attribute ("bar") on a string variable ("foo") in "foo" at line 3.
16