01: package markOccurrences;
02:
03: public class Test2 {
04:
05: public String method(int... x) {
06:
07: return null;
08: }
09:
10: public String method(int x) {
11: if (x != 0)
12: method(x);
13: return null;
14: }
15:
16: public Test2() {
17: method(1);
18: }
19:
20: public static void staticM() {
21: new Test2().method(1);
22: }
23:
24: String initBlock = method(2);
25:
26: }
|