mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 12:26:30 +00:00
19 lines
383 B
Plaintext
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 |