solidity/test/libsolidity/smtCheckerTests/control_flow/try_catch_2.sol
Martin Blicha 09de54b5eb tests
2021-01-11 13:36:03 +01:00

13 lines
171 B
Solidity

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