1--TEST--
2"include" tag
3--TEMPLATE--
4{% extends "base.twig" %}
5
6{% block content %}
7    {{ parent() }}
8{% endblock %}
9--TEMPLATE(base.twig)--
10{% block content %}
11    {% include "foo.twig" %}
12{% endblock %}
13--DATA--
14return []
15--EXCEPTION--
16Twig\Error\LoaderError: Template "foo.twig" is not defined in "base.twig" at line 3.
17