Home | History | Annotate | Download | only in tests
      1 package annotator.tests;
      2 
      3 import java.util.List;
      4 
      5 public class ConstructorParamMultiple {
      6   public ConstructorParamMultiple(
      7       /* @Tainted*/ Object a,
      8       /* @Tainted*/ List</* @UnderInitialization*/ Integer> b,
      9       /* @Tainted*/ int c) {
     10 
     11   }
     12 }
     13