Files

16 lines
216 B
Java

class Navigation {
void m1() {
m2(42);
}
void m2(int i) {
int r = 3 * i;
System.out.println(r);
}
void m3(boolean f) throws Exception {
if (f) m4();
}
void m4() throws Exception { }
}