blob: 2f6d1dc741090c69192cfb4fa5b6d684a74733fe [file] [log] [blame]
class ChangeSignatureTest {
void foo() throws Exception {
}
void bar() throws Exception {
foo();
}
{
try {
bar();
} catch (Exception e) {
e.printStackTrace();
}
}
}
class Derived extends ChangeSignatureTest {
void bar () throws Exception {
super.bar();
}
}