Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / tags / macro / super_globals.test
1 --TEST--
2 Super globals as macro arguments
3 --TEMPLATE--
4 {% import _self as macros %}
5
6 {{ macros.foo('foo') }}
7
8 {% macro foo(GET) %}
9     {{ GET }}
10 {% endmacro %}
11 --DATA--
12 return array()
13 --EXPECT--
14 foo