mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
224 B
Solidity
12 lines
224 B
Solidity
function suffix(uint x) pure suffix returns (uint) { return x; }
|
|
|
|
contract C {
|
|
event E();
|
|
|
|
function f() public {
|
|
emit E suffix;
|
|
}
|
|
}
|
|
// ----
|
|
// ParserError 2314: (136-142): Expected '(' but got identifier
|