solidity/test/libsolidity/ASTJSON/used_errors.sol
2022-03-14 14:21:06 +01:00

9 lines
117 B
Solidity

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