bug76439_2.phpt 302 B

123456789101112131415
  1. --TEST--
  2. Bug #76439: Don't always strip leading whitespace from heredoc T_ENCAPSED_AND_WHITESPACE tokens (error case)
  3. --FILE--
  4. <?php
  5. $foo = 1;
  6. var_dump(<<<BAR
  7. $foo
  8. $foo
  9. BAR);
  10. ?>
  11. --EXPECTF--
  12. Parse error: Invalid body indentation level (expecting an indentation level of at least 1) in %s on line 7