blob: b3c29ea602cc17eb23fc9f543d5b00de6708f16c [file] [log] [blame]
import java.util.Collection;
class Bar {
public static final Bar[] EMPTY_ARRAY = new Bar[0];
public static final Bar[] EMPTY_ARRAY2 = new Bar[]{};
public static final Bar[] NON_EMPTY_ARRAY = new Bar[1];
}
class Foo {
Collection<Bar> foos() {}
{
Bar[] f = f<caret>
}
}