solidity/test/libsolidity/syntaxTests/revertStatement/non_called.sol
2021-03-30 21:15:46 +02:00

7 lines
117 B
Solidity

error E();
function f() public pure {
revert E;
}
// ----
// ParserError 2314: (50-51): Expected '(' but got ';'