mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
196 B
Solidity
8 lines
196 B
Solidity
function suffix(uint x) pure suffix returns (uint) { return x; }
|
|
|
|
contract C {
|
|
uint x = 1000suffix;
|
|
}
|
|
// ----
|
|
// ParserError 8936: (92-96): Identifier-start is not allowed at end of a number.
|