2018-10-18 13:03:52 +00:00
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f() public view {
|
|
|
|
assert(gasleft() > 0);
|
2018-10-22 16:19:11 +00:00
|
|
|
uint g = gasleft();
|
|
|
|
assert(g < gasleft());
|
|
|
|
assert(g >= gasleft());
|
2018-10-18 13:03:52 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2018-10-18 13:03:52 +00:00
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 6328: (43-64): CHC: Assertion violation happens here.\nCounterexample:\n\ng = 0\n\nTransaction trace:\nC.constructor()\nC.f()
|
|
|
|
// Warning 6328: (90-111): CHC: Assertion violation happens here.\nCounterexample:\n\ng = 0\n\nTransaction trace:\nC.constructor()\nC.f()
|