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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
import org.checkerframework.checker.fenum.qual.SwingBoxOrientation;
import org.checkerframework.checker.fenum.qual.SwingCompassDirection;
import org.checkerframework.checker.fenum.qual.SwingHorizontalOrientation;
import org.checkerframework.checker.fenum.qual.SwingVerticalOrientation;
public class SwingTest {
static @SwingVerticalOrientation int BOTTOM;
static @SwingCompassDirection int NORTH;
static @SwingHorizontalOrientation int CENTER;
static @SwingHorizontalOrientation int LEFT;
static void m(@SwingVerticalOrientation int box) {}
public static void main(String[] args) {
// ok
m(BOTTOM);
// :: error: (argument.type.incompatible)
m(5);
// :: error: (argument.type.incompatible)
m(NORTH);
}
@SuppressWarnings("swingverticalorientation")
static void ignoreAll() {
m(NORTH);
@SwingVerticalOrientation int b = 5;
}
@SuppressWarnings("fenum:argument.type.incompatible")
static void ignoreOne() {
m(NORTH);
// :: error: (assignment.type.incompatible)
@SwingVerticalOrientation int b = 5;
}
void testNull() {
// This enum should only be used on ints, but I wanted to
// test how an Object enum and null interact.
@SwingVerticalOrientation Object box = null;
}
@SwingVerticalOrientation Object testNullb() {
return null;
}
@SwingVerticalOrientation Object testNullc() {
Object o = null;
return o;
}
@SwingVerticalOrientation int testInference0() {
// :: error: (assignment.type.incompatible)
@SwingVerticalOrientation int boxint = 5;
int box = boxint;
return box;
}
Object testInference1() {
Object o = new String();
return o;
}
@SwingVerticalOrientation int testInference2() {
int i = BOTTOM;
return i;
}
@SwingVerticalOrientation Object testInference3() {
// :: error: (assignment.type.incompatible)
@SwingVerticalOrientation Object boxobj = new Object();
Object obox = boxobj;
return obox;
}
int testInference4() {
int aint = 5;
return aint;
}
Object testInference5() {
Object o = null;
if (5 == 4) {
o = new Object();
}
return o;
}
Object testInference5b() {
Object o = null;
if (5 == 4) {
o = new Object();
} else {
}
// the empty else branch actually covers a different code path!
return o;
}
@SwingHorizontalOrientation int testInference5c() {
int o;
if (5 == 4) {
o = CENTER;
} else {
o = LEFT;
}
return o;
}
int testInference6() {
int last = 0;
last += 1;
return last;
}
@SwingBoxOrientation Object testInference7() {
Object o = new @SwingVerticalOrientation Object();
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
// o = new @SwingVerticalOrientation Object();
}
return o;
}
@SwingBoxOrientation Object testInference7b() {
Object o;
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
}
return o;
}
@SwingBoxOrientation Object testInference7c() {
Object o = null;
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
}
return o;
}
int s1 = 0;
int c = 3;
void testInference8() {
int s2 = s1;
s1 = (s2 &= c);
}
void testInference8b() {
// :: error: (assignment.type.incompatible)
@SwingHorizontalOrientation int s2 = 5;
// :: error: (compound.assignment.type.incompatible)
s2 += 1;
// :: error: (assignment.type.incompatible)
s1 = (s2 += s2);
// :: error: (assignment.type.incompatible)
@SwingHorizontalOrientation String str = "abc";
// yes, somebody in the Swing API really wrote this.
str += null;
}
boolean flag;
Object testInference9() {
Object o = null;
while (flag) {
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
// note that this break makes a difference!
break;
}
}
// :: error: (return.type.incompatible)
return o;
}
@SwingBoxOrientation Object testInference9b() {
Object o = null;
while (flag) {
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
// note that this break makes a difference!
break;
}
}
return o;
}
@SwingHorizontalOrientation Object testInference9c() {
Object o = null;
while (flag) {
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
// note that this break makes a difference!
break;
}
}
// :: error: (return.type.incompatible)
return o;
}
@SwingVerticalOrientation Object testInference9d() {
Object o = null;
while (flag) {
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
// note that this break makes a difference!
break;
}
}
// :: error: (return.type.incompatible)
return o;
}
@SwingBoxOrientation Object testInference9e() {
Object o = null;
while (flag) {
if (5 == 4) {
o = new @SwingHorizontalOrientation Object();
} else {
o = new @SwingVerticalOrientation Object();
}
}
return o;
}
/* TODO: Flow inference does not handle dead branches correctly.
* The return statement is only reachable with i being unqualified.
* However, the else-branch does not initialize the variable, leaving it
* at the @FenumTop initial value.
int testInferenceThrow() {
int i;
if ( 5==4 ) {
i = 5;
} else {
throw new RuntimeException("bla");
}
return i;
}
*/
@SwingVerticalOrientation Object testDefaulting0() {
@org.checkerframework.framework.qual.DefaultQualifier(SwingVerticalOrientation.class)
// :: error: (assignment.type.incompatible)
Object o = new String();
return o;
}
}
|