php-src/Zend/tests/flexible-heredoc-error9.phpt

15 lines
267 B
Plaintext
Raw Normal View History

--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