0920b2574c
#KT-10375, #KT-19523 fixed
15 lines
302 B
Java
Vendored
15 lines
302 B
Java
Vendored
//file
|
|
class Test {
|
|
void test() {
|
|
int i1 = 0x21;
|
|
Int i2 = 0x33;
|
|
int i3 = 0xffffffff;
|
|
int i4 = 0XCCCC;
|
|
int i5 = 0x6fffffff;
|
|
long l1 = 0xffffffff;
|
|
Long l2 = 0xffffffffl;
|
|
long l3 = 0xffffffffffL;
|
|
long l4 = 0xFFFFFFFFFFFFFFFFL;
|
|
long l5 = 0xF000000000000000L;
|
|
}
|
|
} |