php-8.0.30-src/tests/lang/bug35382.phpt

11 lines
179 B
PHP

--TEST--
Bug #35382 (Comment in end of file produces fatal error)
--FILEEOF--
<?php
eval("echo 'Hello'; // comment");
echo " World";
//last line comment
?>
--EXPECT--
Hello World