mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 13:30:37 +08:00
13 lines
234 B
Java
13 lines
234 B
Java
|
package bar.foo;
|
||
|
|
||
|
class static_1 {
|
||
|
class bar {
|
||
|
// No Static members: methods, fields, inner classes.
|
||
|
static int foo;
|
||
|
static int xyzzy (){return 0;}
|
||
|
static {}
|
||
|
static class foo {}
|
||
|
// No Member interface FIXME
|
||
|
}
|
||
|
}
|