blob: 022c0811aa3b05fb92d46376af91628d74af1867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Flexible heredoc syntax error 12: show erroneous line in error message (mixed indentation)
--FILE--
<?php
echo <<<END
a
b
END;
?>
--EXPECTF--
Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line 5
|