* 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

@ -1,3 +1,7 @@
2000-03-15 Tom Tromey <tromey@cygnus.com>
* libjava.compile/pr176.java: New file, for PR gcj/176.
2000-03-15 Bryce McKinlay <bryce@albatross.co.nz>
* libjava.compile/pr172.java: Correct classname to match file name.

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 {}
}
}