blob: af8ba6e252950fd4a4e841f651ba57451cdc1231 [file] [log] [blame]
import org.checkerframework.checker.fenum.qual.Fenum;
import qual.MyFenum;
@SuppressWarnings("fenum:assignmenTestStatic") // initialization of fake enums
class TestStatic {
public static final @Fenum("A") int ACONST1 = 1;
public static final @Fenum("A") int ACONST2 = 2;
public static final @Fenum("B") int BCONST1 = 4;
public static final @Fenum("B") int BCONST2 = 5;
public static final @MyFenum int CCONST1 = 5;
public static final @MyFenum int CCONST2 = 6;
}
public class FenumDemo {
@Fenum("A") int state1 = TestStatic.ACONST1; // ok
@Fenum("B") int state2 = TestStatic.ACONST1; // Incompatible fenums forbidden!
@MyFenum int state3 = TestStatic.CCONST1; // ok
void fenumArg(@Fenum("A") int p) {}
void myFenumArg(@MyFenum int p) {}
void foo() {
state1 = 4; // Direct use of value forbidden!
state1 = TestStatic.BCONST1; // Incompatible fenums forbidden!
state1 = TestStatic.ACONST2; // ok
fenumArg(5); // Direct use of value forbidden!
fenumArg(TestStatic.BCONST1); // Incompatible fenums forbidden!
fenumArg(TestStatic.ACONST1); // ok
state3 = 8;
state3 = TestStatic.ACONST2; // Incompatible fenums forbidden!
state3 = TestStatic.CCONST2; // ok
myFenumArg(8); // Direct use of value forbidden!
myFenumArg(TestStatic.BCONST2); // Incompatible fenums forbidden!
myFenumArg(TestStatic.CCONST1); // ok
}
void comparisons() {
if (TestStatic.ACONST1 < TestStatic.ACONST2) {
// ok
}
if (TestStatic.CCONST1 > TestStatic.CCONST2) {
// ok
}
// :: error: (binary)
if (TestStatic.ACONST1 < TestStatic.BCONST2) {}
// :: error: (binary)
if (TestStatic.ACONST1 == TestStatic.BCONST2) {}
// :: error: (binary)
if (TestStatic.ACONST1 >= TestStatic.CCONST2) {}
// :: error: (binary)
if (TestStatic.ACONST1 < 5) {}
// :: error: (binary)
if (TestStatic.BCONST1 > 5) {}
// :: error: (binary)
if (TestStatic.CCONST1 == 5) {}
}
}