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