blob: 22c3b7ed78561f6b1ffab0192da014e01dfe5797 [file] [log] [blame]
import java.util.*;
class Foo {
<T> void foo() {}
<T1 extends List, T2> void foo1() {}
void bar() {}
<T> void xyz(T l) {}
{
foo();
this.<String>foo();
this.<error descr="Wrong number of type arguments: 2; required: 1"><String, Integer></error>foo();
this.<String>bar();
this.<String, Integer>bar();
this.<<error descr="Type parameter 'java.lang.String' is not within its bound; should implement 'java.util.List'">String</error>, Integer>foo1();
this.<String>xyz<error descr="'xyz(java.lang.String)' in 'Foo' cannot be applied to '(java.lang.Integer)'">(Integer.valueOf("27"))</error>;
ArrayList list = new <String>ArrayList<String>();
}
}