xref: /PHP-8.0/tests/lang/bug35382.phpt (revision 7aacc705)
1--TEST--
2Bug #35382 (Comment in end of file produces fatal error)
3--FILEEOF--
4<?php
5eval("echo 'Hello'; // comment");
6echo " World";
7//last line comment
8?>
9--EXPECT--
10Hello World
11