solidity/test/libsolidity/smtCheckerTests/control_flow/try_catch_2.sol
2021-04-08 21:03:39 +02:00

13 lines
157 B
Solidity

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