mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
295 B
Solidity
16 lines
295 B
Solidity
contract C {
|
|
function g(bool b) public {}
|
|
function f(bool b) public returns (bytes memory txt) {
|
|
if (0==1)
|
|
try this.g(b) {}
|
|
catch (bytes memory s) {
|
|
txt = s;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6838: (109-113): BMC: Condition is always false.
|