static_1.java 234 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12
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
        }
}