solidity/test/libsolidity/ASTJSON/used_errors.sol

9 lines
112 B
Solidity
Raw Normal View History

2021-04-15 07:59:59 +00:00
error X();
function f() { revert X(); }
contract C {
error T();
function h() public { f(); }
2021-04-15 07:59:59 +00:00
}
// ----