public function testGetVarName() {
$twig = new Twig_Environment(null, array(
'autoescape' => false,
'optimizations' => 0,
));
$twig
->parse($twig
->tokenize(<<<EOF
{% from _self import foo %}
{% macro foo() %}
{{ foo }}
{% endmacro %}
EOF
));
}