blob: f1ba2121e6e9141ab4a5d077442bd6343b4ba534 [file] [log] [blame]
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;
}