solidity/test/libsolidity/ASTJSON/used_errors.sol
2021-04-19 14:15:50 +02:00

9 lines
117 B
Solidity

error X();
function f() { revert X(); }
contract C {
error T();
function h() public pure { f(); }
}
// ----