solidity/test/libsolidity/ASTJSON/used_errors.sol
2022-02-21 19:14:33 +05:30

9 lines
112 B
Solidity

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