blob: 33ff88f7b369f516a5ca38be9e93bb25a2db2dc4 [file] [log] [blame]
class ChangeSignatureTest {
void foo() throws Exception {
}
void bar() throws Exception {
foo();
}
{
try {
bar();
} catch (Exception e) {
e.printStackTrace();
}
}
}