summaryrefslogtreecommitdiff
path: root/Zend/tests/flexible-heredoc-error10.phpt
blob: 51be4562f164c9ea712fe11b28ad1ce071ee1120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Flexible heredoc syntax error 10: unindented variable interpolation (as first value)
--FILE--
<?php

$var = 'Bar';
var_dump(<<<TEST
$var
 TEST);

?>
--EXPECTF--
Parse error: Invalid body indentation level (expecting an indentation level of at least 1) in %s on line %d