1--TEST--
2macro
3--TEMPLATE--
4{% from _self import test %}
5
6{% macro test(this) -%}
7    {{ this }}
8{%- endmacro %}
9
10{{ test(this) }}
11--DATA--
12return ['this' => 'foo']
13--EXPECT--
14foo
15