aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTests/overflow/simple_overflow.sol
blob: ec819b80c76d63ac51eac8b7aa61e3215ad9ef01 (plain) (blame)
1
2
3
4
5
6
pragma experimental SMTChecker;
contract C {
    function f(uint a, uint b) public pure returns (uint) { return a + b; }
}
// ----
// Warning: (112-117): Overflow (resulting value larger than 2**256 - 1) happens here