solidity/test/libsolidity/smtCheckerTests/functions/internal_call_with_assertion_inheritance_1_fail.sol
2020-07-23 18:49:03 +02:00

25 lines
552 B
Solidity

pragma experimental SMTChecker;
contract A {
uint x;
function f() internal {
assert(x == 2);
--x;
}
}
contract C is A {
constructor() {
assert(x == 1);
++x;
f();
assert(x == 1);
}
}
// ----
// Warning 6328: (82-96): Assertion violation happens here
// Warning 6328: (148-162): Assertion violation happens here
// Warning 6328: (180-194): Assertion violation happens here
// Warning 4144: (100-103): Underflow (resulting value less than 0) happens here
// Warning 4144: (100-103): Underflow (resulting value less than 0) happens here