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

13 lines
157 B
Solidity
Raw Normal View History

contract C {
function f() public {
try this.f() {}
catch (bytes memory x) {
x;
}
}
}
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
// EVMVersion: >=byzantium
// ----