mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-17 21:07:18 +00:00
11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
--TEST--
|
|
*, /, //, and % will have a higher precedence over not in Twig 4.0
|
|
--TEMPLATE--
|
|
{{ (not 1) * 2 }}
|
|
{{ not 1 * 2 }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
0
|
|
0
|