
class B extends A{  // will not compile - cannot override a static method

	@Override
	static void foo() {
		System.out.println("new foo");
	}

}
