aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr195090.java
blob: 515a135bee348c330af308a5f9425c50b0cfaae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Helper interface.
 */
interface Interface{
        boolean methodToBeImplemented();
}

/**
 * Exposes the ajc$this_ is never read warning.
 */
public aspect pr195090 {
        public boolean Interface.methodToBeImplemented() {
                return returnTrue();
        }

        public static boolean returnTrue() {
                return true;
        }
}