blob: cd952a73f26a1dee88884b453d125d4a4e967c61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Flexible heredoc syntax error 11: show erroneous line in error message (variable interpolation)
--FILE--
<?php
echo <<<END
a
$a
END;
?>
--EXPECTF--
Parse error: Invalid body indentation level (expecting an indentation level of at least 1) in %s on line 5
|