Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / exceptions / undefined_template_in_child_template.test
1 --TEST--
2 Exception for an undefined template in a child template
3 --TEMPLATE--
4 {% extends 'base.twig' %}
5
6 {% block sidebar %}
7     {{ include('include.twig') }}
8 {% endblock %}
9 --TEMPLATE(base.twig)--
10 {% block sidebar %}
11 {% endblock %}
12 --DATA--
13 return array()
14 --EXCEPTION--
15 Twig_Error_Loader: Template "include.twig" is not defined in "index.twig" at line 5.