summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr110927/Case1.java
blob: bf1abf3cea53b30f17c5bd3d4f220253e32391a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface I {
}

interface IE1<T> {

}

interface IE2 {

}

aspect A1 {
       declare parents : I implements  IE1<String>;
}

aspect A2 {
       declare parents : I implements  IE2;
}