php-src/tests/lang/bug35382.phpt

10 lines
177 B
Plaintext
Raw Normal View History

2005-11-26 13:23:27 +00:00
--TEST--
Bug #35382 (Comment in end of file produces fatal error)
2005-12-18 14:21:27 +00:00
--FILEEOF--
2005-11-26 13:38:28 +00:00
<?php
2005-11-26 13:23:27 +00:00
eval("echo 'Hello'; // comment");
echo " World";
//last line comment
--EXPECTF--
2005-11-26 13:38:28 +00:00
Hello World