mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
186 B
Solidity
8 lines
186 B
Solidity
function suffix(uint value) pure suffix returns (uint) { return value; }
|
|
|
|
contract C {
|
|
uint x = 01_23_45 suffix;
|
|
}
|
|
// ----
|
|
// ParserError 8936: (100-101): Octal numbers not allowed.
|