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

6 lines
57 B
Solidity

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