solidity/test/libsolidity/smtCheckerTests/functions/internal_call_with_assertion_inheritance_1_fail.sol

27 lines
677 B
Solidity
Raw Normal View History

2020-02-12 02:21:42 +00:00
pragma experimental SMTChecker;
contract A {
uint x;
function f() internal {
assert(x == 2);
--x;
}
}
contract C is A {
constructor() public {
assert(x == 1);
++x;
f();
assert(x == 1);
}
}
// ----
// Warning 4661: (82-96): Assertion violation happens here
// Warning 4144: (100-103): Underflow (resulting value less than 0) happens here
// Warning 4661: (82-96): Assertion violation happens here
// Warning 4144: (100-103): Underflow (resulting value less than 0) happens here
// Warning 4661: (155-169): Assertion violation happens here
// Warning 4661: (82-96): Assertion violation happens here
// Warning 4661: (187-201): Assertion violation happens here