aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr197720/C1.java
blob: 999190c774a197bda7a52db8892fb93555f8348f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test.aspects;


public class C1<T> {

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

}