summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/design/DesignC.java
blob: 51d410843f94f111c69f4aade4c2a6075532fcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.*;

class C {}

interface I {}

aspect X {

  <T extends Number,Q extends I> void C.m0(T t,Q q) { }   // L9

  <A,B,C>  List<A> C.m1(B b,Collection<C> cs) { return null; } // L11

}