mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
10 lines
177 B
PHP
Executable File
10 lines
177 B
PHP
Executable File
--TEST--
|
|
Bug #35382 (Comment in end of file produces fatal error)
|
|
--FILEEOF--
|
|
<?php
|
|
eval("echo 'Hello'; // comment");
|
|
echo " World";
|
|
//last line comment
|
|
--EXPECTF--
|
|
Hello World
|