0
0
mirror of https://github.com/php/php-src.git synced 2024-12-19 06:50:17 +08:00
php-src/Zend/tests/bug36037.phpt
2012-10-10 10:27:49 +08:00

15 lines
152 B
PHP

--TEST--
Bug #36037 (heredoc adds extra line number)
--FILE--
<?php
echo __LINE__, "\n";
$x=<<<XXX
123
YYY;
XXX;
echo __LINE__, "\n";
?>
--EXPECT--
2
7