aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/sharing/CtorF.aj
blob: c06083d2c90ff8b2ba00d8d1fd56463b27175d12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.*;

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

    Base b =  new Base(new HashMap<String,Float>(),new HashMap<Double,Float>());
  }
}

class Base<P,N extends Number,S> { 
}

aspect X {
  public Base<A,B,C>.new(Map<C,A> lc,Map<B,A> lb) { this(); }  // ok multiple in funny orders 
}