e795e4b73d
#KT-32835 fixed
8 lines
233 B
Java
Vendored
8 lines
233 B
Java
Vendored
class Test {
|
|
int negativeOctalInt = 023432423432;
|
|
int octalInt = 07432423432;
|
|
long negativeOctalLong = 01777777777777777777777L;
|
|
long octalLong = 0777777777777777777777L;
|
|
short octalShort = 047777;
|
|
byte octalByte = 077;
|
|
} |