1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
import org.checkerframework.checker.index.qual.IndexFor;
import org.checkerframework.common.value.qual.MinLen;
public class IndexForTest {
int @MinLen(1) [] array = {0};
void test1(@IndexFor("array") int i) {
int x = array[i];
}
void callTest1(int x) {
test1(0);
// :: error: (argument.type.incompatible)
test1(1);
// :: error: (argument.type.incompatible)
test1(2);
// :: error: (argument.type.incompatible)
test1(array.length);
if (array.length > 0) {
test1(array.length - 1);
}
test1(array.length - 1);
// :: error: (argument.type.incompatible)
test1(this.array.length);
if (array.length > 0) {
test1(this.array.length - 1);
}
test1(this.array.length - 1);
if (this.array.length > x && x >= 0) {
test1(x);
}
if (array.length == x) {
// :: error: (argument.type.incompatible)
test1(x);
}
}
void test2(@IndexFor("this.array") int i) {
int x = array[i];
}
void callTest2(int x) {
test2(0);
// :: error: (argument.type.incompatible)
test2(1);
// :: error: (argument.type.incompatible)
test2(2);
// :: error: (argument.type.incompatible)
test2(array.length);
if (array.length > 0) {
test2(array.length - 1);
}
test2(array.length - 1);
// :: error: (argument.type.incompatible)
test2(this.array.length);
if (array.length > 0) {
test2(this.array.length - 1);
}
test2(this.array.length - 1);
if (array.length == x && x >= 0) {
// :: error: (argument.type.incompatible)
test2(x);
}
}
}
|