summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/sharing/MethodN.aj
blob: 5a6a65888905a96841ab940ab33636ab8acf7c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import java.util.*;

public class MethodN {
  public static void main(String []argv) {
  }
}

interface I { }

aspect X {
  public List<Z> I<Z>.m() {}; // error - the onType isn't generic!
}