mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 04:16:28 +00:00
9 lines
271 B
Plaintext
9 lines
271 B
Plaintext
--TEST--
|
|
Twig supports the "matches" operator with a great error message
|
|
--TEMPLATE--
|
|
{{ 'foo' matches '/o' }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\SyntaxError: Regexp "/o" passed to "matches" is not valid: No ending delimiter '/' found in "index.twig" at line 2.
|