mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
186 B
Solidity
9 lines
186 B
Solidity
function suffix(uint x) pure returns (uint) { return x; }
|
|
|
|
contract C {
|
|
uint v = 42;
|
|
uint x = v suffix;
|
|
}
|
|
// ----
|
|
// ParserError 2314: (104-110): Expected ';' but got identifier
|