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

13 lines
157 B
Solidity

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