blob: 5bda42c6e8e6ad75d937046af3d8815ac58b61ca [file] [log] [blame]
class A {
void foo() throws Exception {}
}
class B extends A {
void foo() {
}
}
class C {
{
A a = new B();
((B) a).foo();
}
}