aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTests/special/gasleft.sol
blob: 857230febd942310d81d08b561a8d9cdac85f4b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pragma experimental SMTChecker;

contract C
{
    function f() public view {
        assert(gasleft() > 0);
        uint g = gasleft();
        assert(g < gasleft());
        assert(g >= gasleft());
    }
}
// ----
// Warning: (76-97): Assertion violation happens here
// Warning: (123-144): Assertion violation happens here