mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 03:46:39 +00:00
16 lines
332 B
Plaintext
16 lines
332 B
Plaintext
--TEST--
|
|
Exception with bad line number
|
|
--TEMPLATE--
|
|
{% block content %}
|
|
{{ foo }}
|
|
{{ include("foo") }}
|
|
{% endblock %}
|
|
index
|
|
--TEMPLATE(foo)--
|
|
foo
|
|
{{ foo.bar }}
|
|
--DATA--
|
|
return ['foo' => 'foo']
|
|
--EXCEPTION--
|
|
Twig\Error\RuntimeError: Impossible to access an attribute ("bar") on a string variable ("foo") in "foo" at line 3.
|