php-src/tests/lang/bug35382.phpt

10 lines
176 B
Plaintext
Raw Normal View History

2005-11-26 13:22:46 +00:00
--TEST--
Bug #35382 (Comment in end of file produces fatal error)
2005-11-26 16:34:37 +00:00
--FILEEOF--
2005-11-26 13:37:30 +00:00
<?php
2005-11-26 13:22:46 +00:00
eval("echo 'Hello'; // comment");
echo " World";
//last line comment
2008-05-26 15:52:06 +00:00
--EXPECT--
2005-11-26 13:39:55 +00:00
Hello World