mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
187 B
Solidity
8 lines
187 B
Solidity
function suffix(uint value) pure returns (uint) { return value; }
|
|
|
|
contract C {
|
|
uint x = 1000 suffix suffix;
|
|
}
|
|
// ----
|
|
// ParserError 2314: (105-111): Expected ';' but got identifier
|