solidity/test/libsolidity/syntaxTests/revertStatement/in_global_function.sol

6 lines
57 B
Solidity
Raw Normal View History

2021-02-24 09:55:49 +00:00
error E();
function f() pure {
revert E();
}
// ----