mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-05 15:07:11 +00:00
11 lines
152 B
Plaintext
11 lines
152 B
Plaintext
--TEST--
|
|
use an anonymous function as a function
|
|
--TEMPLATE--
|
|
{{ anon_foo('bar') }}
|
|
{{ 'bar'|anon_foo }}
|
|
--DATA--
|
|
return array()
|
|
--EXPECT--
|
|
*bar*
|
|
*bar*
|