blob: a52b5bbf80880a9de562a4e43966d84e2e847ae2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | // 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 {}
  }
}
 |