summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr197719/test/aspects/C1.java
blob: 363c79a938e77e2057eb9d25434605f0bb0b7326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package test.aspects;

public class C1 {

    @MyAnn
    protected void aMethod() {
      System.out.println("Calling aMethod");
    }
    
    public void callAMethod() {
        aMethod(); // Should be a marker here...
    }

}