mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-14 19:36:43 +00:00
15 lines
187 B
Plaintext
15 lines
187 B
Plaintext
--TEST--
|
|
Exception with bad line number
|
|
--TEMPLATE--
|
|
{{ 'Foo\Bar' }}
|
|
{{ 'Foo\\Bar' }}
|
|
{{ 'Foo\\\Bar' }}
|
|
{{ 'Foo\\\\Bar' }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
Foo\Bar
|
|
Foo\Bar
|
|
Foo\\Bar
|
|
Foo\\Bar
|