
class CTest {
	public static void main(String[] args) {

		C c = new C();

        c.boo();
		c.foo();
		c.box();

		// c.moo() will not compile - static method in Interface
		MyInterface.moo();
		System.out.println(MyInterface.i);
	}
}
