blob: 3b6b49021645f87f6e604fb92aa5751c1c93c1cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package pack;
public class C {
public C() {
}
public void method1() {
new C().method2();
}
public void method2() {
}
public static void main(String[] args) {
new C().method1();
}
}
|