reserved_variables.test

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/reserved_variables.test
View source
--TEST--
macro
--TEMPLATE--
{% from _self import test %}

{% macro test(this) -%}
    {{ this }}
{%- endmacro %}

{{ test(this) }}
--DATA--
return array('this' => 'foo');
--EXPECT--
foo