Files
kotlin-fork/nj2k/testData/newJ2k/literalExpression/octal.java
T
2019-07-25 14:34:36 +03:00

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;
}