* 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

@ -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;
}