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