2021-01-18 10:24:39 +00:00
|
|
|
contract C {
|
|
|
|
function g() public pure returns (uint) {
|
|
|
|
}
|
|
|
|
function f() public view {
|
|
|
|
uint choice = 42;
|
|
|
|
try this.g() returns (uint) {
|
|
|
|
choice = 1;
|
|
|
|
} catch{
|
|
|
|
choice = 10;
|
|
|
|
try this.g() returns (uint) {
|
|
|
|
choice = 2;
|
|
|
|
} catch {
|
|
|
|
choice = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(choice >= 1 && choice <= 3); // should hold
|
|
|
|
assert(choice == 42); // should fail
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2021-01-18 10:24:39 +00:00
|
|
|
// ----
|
2021-08-20 16:47:30 +00:00
|
|
|
// Warning 6328: (323-343): CHC: Assertion violation happens here.\nCounterexample:\n\nchoice = 1\n\nTransaction trace:\nC.constructor()\nC.f()\n C.g() -- trusted external call
|