mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-23 08:58:59 +08:00
18 lines
194 B
Java
18 lines
194 B
Java
|
import java.util.Vector;
|
||
|
|
||
|
public class PR1343
|
||
|
{
|
||
|
void f(Object[] l)
|
||
|
{
|
||
|
class x1
|
||
|
{
|
||
|
};
|
||
|
}
|
||
|
void f(Vector l)
|
||
|
{
|
||
|
class x1
|
||
|
{
|
||
|
};
|
||
|
}
|
||
|
}
|