mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02: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
|
||
|
|
{
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|