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