aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/missing_nested.test
blob: 86c1864446859fb542a7aa660cad72fbc1a37cbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
"include" tag
--TEMPLATE--
{% extends "base.twig" %}

{% block content %}
    {{ parent() }}
{% endblock %}
--TEMPLATE(base.twig)--
{% block content %}
    {% include "foo.twig" %}
{% endblock %}
--DATA--
return array();
--EXCEPTION--
Twig_Error_Loader: Template "foo.twig" is not defined in "base.twig" at line 3.