blob: bd1577dfefa24f3c0ea03264d23861e628b5e779 [file] [log] [blame]
class Test {
interface I {
Object _();
}
static class Foo<X> {}
static class Foo1 {}
void testAssign() {
I o = <error descr="Raw constructor reference with explicit type parameters for constructor">Foo::<String>new</error>;
I o1 = Foo1::<String>new;
}
}