blob: 9bd704bd12f8fffdb94a0d553ec2b785c44d0ccc [file] [log] [blame]
import java.util.Collection;
class Foo {
private void test() {
Object x = null;
((java.util.Collection<?>)x).add<error descr="'add(capture<?>)' in 'java.util.Collection' cannot be applied to '(java.lang.String)'">("")</error>;
}
}