blob: 213ddcef6b5f29105f5124c6f537ea7b01c984a3 [file] [log] [blame]
import org.checkerframework.checker.index.qual.*;
import org.checkerframework.common.value.qual.*;
public class BottomValTest {
@NonNegative int foo(@BottomVal int bottom) {
return bottom;
}
@Positive int bar(@BottomVal int bottom) {
return bottom;
}
@LTLengthOf("#1") int baz(int[] a, @BottomVal int bottom) {
return bottom;
}
}