aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr263666/x/OverrideOptions.aj
blob: cccc7798af0258e01f34e4f9738128c727bbdd4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package x;
public aspect OverrideOptions
{















   /**
    * Comment A
    */
   boolean around() : execution( public boolean A.a() ) && this( A )
   {
       return false;
   }
   /**
    * Comment B
    */
   int around() : execution(private int B.b(..)) && this(B){
       return 0;
   }
}