blob: c98cc996c5b4c582e365869ed18cb8078a36f96a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Flexible heredoc syntax error 9: unindented variable interpolation
--FILE--
<?php
$var = 'Bar';
var_dump(<<<TEST
Foo
$var
TEST);
?>
--EXPECTF--
Parse error: Invalid body indentation level (expecting an indentation level of at least 2) in %s on line %d
|