mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
184 B
Solidity
8 lines
184 B
Solidity
function suffix(uint a, uint b) pure returns (uint) { return a + b; }
|
|
|
|
contract C {
|
|
uint x = 1000 1 suffix;
|
|
}
|
|
// ----
|
|
// ParserError 2314: (102-103): Expected ';' but got 'Number'
|