blob: ae95c31aff05da4c3931296c2e554f75909aab06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import java.util.*;
public class MethodO {
public static void main(String []argv) {
}
}
interface I<N> { }
aspect X {
public List<String> I<String>.m() {}; // error, String is an exact type
}
|