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