* libjava.compile/inner_pub.java: New file.

From-SVN: r31503
This commit is contained in:
Tom Tromey 2000-01-19 17:28:32 +00:00 committed by Tom Tromey
parent 7e4d789838
commit ec39b14af2
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-01-18 Tom Tromey <tromey@cygnus.com>
* libjava.compile/inner_pub.java: New file.
2000-01-16 Anthony Green <green@cygnus.com>
* libjava.lang/pr133.out: New file.

View File

@ -0,0 +1,11 @@
// Test to ensure that public inner classes work.
public class inner_pub
{
public class really_inner
{
int z;
}
really_inner foo;
}