Files
2026-06-06 08:55:16 +02:00

19 lines
383 B
Plaintext

--TEST--
Call to undefined method Twig\\TemplateWrapper::yieldBlock()
--TEMPLATE--
{% extends 'parent' %}
{%- block content -%}
{{ parent() }}
child
{%- endblock -%}
--TEMPLATE(parent)--
{% extends ['unknowngrandparent', 'grandparent'] %}
--TEMPLATE(grandparent)--
{%- block content -%}
grandparent
{%- endblock -%}
--DATA--
return []
--EXPECT--
grandparent
child