solidity/test/libsolidity/smtCheckerTests/unchecked/checked_modifier_called_by_unchecked.sol

15 lines
515 B
Solidity
Raw Normal View History

2020-12-16 17:32:34 +00:00
contract C {
modifier add(uint16 a, uint16 b) {
unchecked { a + b; } // overflow not reported
_;
}
function f(uint16 a, uint16 b, uint16 c) public pure add(a, b) returns (uint16) {
return b + c; // can overflow
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2020-12-16 17:32:34 +00:00
// ----
2021-03-31 15:11:54 +00:00
// Warning 4984: (225-230): CHC: Overflow (resulting value larger than 65535) happens here.\nCounterexample:\n\na = 65535\nb = 1\nc = 65535\n = 0\na = 65535\nb = 1\n\nTransaction trace:\nC.constructor()\nC.f(65535, 1, 65535)