summaryrefslogtreecommitdiffstats
path: root/contrib/init/gentoo
stat options
Period:
Authors:

Commits per author per week (path 'contrib/init/gentoo')

AuthorW09 2025W10 2025W11 2025W12 2025Total
Total00000
sts/errors/ProceedArgsCE.java?h=BETA_JAVA8&id=3dbbb88e9271404b46dbe56826128f1ec4f16b32'>diffstats
path: root/tests/errors/ProceedArgsCE.java
blob: 02224847d8aed3e5ed9b3eb3c406f5dc650d020f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class ProceedArgsCE {
     public static void main(String[] args){
         new ProceedArgsCE().go();
     }

     void go() {
         System.out.println("... ");
     }
}

aspect A {
    void around(Object o): this(o) {
        proceed();  // CE
    }
    void around(Object o): this(o) {
        proceed(2);  // CE
    }
    void around(Object o): this(o) {
        proceed("hi", 2);  //CE
    }
}