mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 02:39:02 +08:00
12 lines
146 B
Java
12 lines
146 B
Java
|
// Test to ensure that public inner classes work.
|
||
|
|
||
|
public class inner_pub
|
||
|
{
|
||
|
public class really_inner
|
||
|
{
|
||
|
int z;
|
||
|
}
|
||
|
|
||
|
really_inner foo;
|
||
|
}
|