blob: 447cd4e24682322b2244a92747b0b7f22b198273 [file] [log] [blame]
public class Test {
void f() {
Long L = 5L;
if (L == 5) {
;
}
long l = 0;
if (l == 0f) {
;
}
char c = 1;
if (c == 1L) {
;
}
}
}