class Test { | |
int negativeOctalInt = 023432423432; | |
int octalInt = 07432423432; | |
int invalidOctalInt = 08; | |
long negativeOctalLong = 01777777777777777777777L; | |
long octalLong = 0777777777777777777777L; | |
long invalidOctalLong = 08L; | |
short octalShort = 047777; | |
byte octalByte = 077; | |
} |