blob: 81bcec4e2dc1b9810cdf209833b2a0b0c23789eb [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>;
}
}