* libjava.compile/pr176.java: New file, for PR gcj/176.

From-SVN: r32561
This commit is contained in:
Tom Tromey 2000-03-15 16:36:44 +00:00 committed by Tom Tromey
parent 369e59b1c1
commit beca355843
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,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 {}
}
}