blob: 05b71b36b27bc84605f6651c4fe2c0457830f9f8 (
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
|