blob: 3b98cd365b1ddef5d602a6f6e85c668219c2caf5 [file] [log] [blame]
// This class is not compiled with the Nullness Checker,
// so that only explicit annotations are stored in bytecode.
import javax.annotation.Nullable;
import org.checkerframework.checker.nullness.qual.NonNull;
public class Binary {
@Nullable Object foo() {
return null;
}
Object bar(Object p) {
return null;
}
int baz(Object @NonNull [] p) {
return 1;
}
int baz2(Object[] p) {
return 1;
}
}