solidity/test/libsolidity/smtCheckerTests/control_flow/try_catch_2.sol

13 lines
171 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f() public {
try this.f() {}
catch (bytes memory x) {
x;
}
}
}
// ====
// EVMVersion: >=byzantium
// ----