1--TEST--
2eval() parse error on function with doc comment
3--FILE--
4<?php
5
6eval(
7<<<EOC
8/** doc comment */
9function f() {
10EOC
11);
12
13?>
14--EXPECTF--
15Parse error: syntax error, unexpected end of file in %s(%d) : eval()'d code on line %d
16