1--TEST--
2"from" tag with reserved name
3--TEMPLATE--
4{% import 'forms.twig' as macros %}
5
6{{ macros.parent() }}
7--TEMPLATE(forms.twig)--
8--DATA--
9return []
10--EXCEPTION--
11Twig\Error\SyntaxError: "parent" cannot be called as macro as it is a reserved keyword in "index.twig" at line 4.
12