php-src/tests/lang/bug35382.phpt

10 lines
174 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)
--FILE--
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
--EXPECTF--
2005-11-26 13:39:55 +00:00
Hello World