xref: /PHP-7.4/tests/lang/bug35382.phpt (revision ded3d984)
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--EXPECT--
9Hello World
10