aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr250632/MyAspect.java
blob: a1ddb4f7524ed07fb487641d9a5ee10ceb77e4b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface IMarker<CLOCK,STATE> { }

public aspect MyAspect
{

       public void IMarker<CLOCK,STATE>.map()
       {
               CLOCK[] var = find();
       };



       public CLOCK[] IMarker<CLOCK,STATE>.find()
       {
               return null;
       }

}