mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
16 lines
211 B
Java
16 lines
211 B
Java
|
|
// gcj (20000313) reports "Type `x' not found in the declaration of the
|
||
|
|
// return type of method `getX'."
|
||
|
|
|
||
|
|
public class pr176
|
||
|
|
{
|
||
|
|
class A
|
||
|
|
{
|
||
|
|
x getX()
|
||
|
|
{
|
||
|
|
return new x();
|
||
|
|
}
|
||
|
|
|
||
|
|
class x {}
|
||
|
|
}
|
||
|
|
}
|