In the following code the long literal is highlighted with the error message "Long number too large". However this is just the octal represenation of -128 and compiles fine.
class NegativeNumber {
publicstaticlong octalValue = 01777777777777777777600L;
}
Description
In the following code the long literal is highlighted with the error message "Long number too large". However this is just the octal represenation of -128 and compiles fine.
class NegativeNumber {
publicstaticlong octalValue = 01777777777777777777600L;
}