solidity/test/libsolidity/syntaxTests/revertStatement/regular.sol
2021-04-20 17:38:29 +02:00

8 lines
91 B
Solidity

error E();
contract C {
function f() public pure {
revert E();
}
}
// ----