1--TEST--
2Use conflicts should not occur across eval()s
3--FILE--
4<?php
5
6/* It is important that these two eval()s occur on the same line,
7 * as this forces them to have the same filename. */
8eval("class A {}"); eval("use Foo\A;");
9
10?>
11===DONE===
12--EXPECT--
13===DONE===
14