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

6 lines
82 B
Solidity

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