2019-09-26 14:12:27 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
contract C {
|
|
|
|
uint a;
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint x) {
|
2019-09-26 14:12:27 +00:00
|
|
|
a = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 20:44:06 +00:00
|
|
|
abstract contract B1 is C {
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint x) {
|
2019-09-26 14:12:27 +00:00
|
|
|
a = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract B2 is C {
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint x) C(x + 2) {
|
2019-09-26 14:12:27 +00:00
|
|
|
a = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract A is B2, B1 {
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint x) B1(x) B2(x) {
|
2019-09-26 14:12:27 +00:00
|
|
|
assert(a == x);
|
|
|
|
assert(a == x + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-12-02 17:40:48 +00:00
|
|
|
// Warning 4984: (200-205): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.\nCounterexample:\na = 0\nx = 115792089237316195423570985008687907853269984665640564039457584007913129639934\n\n\nTransaction trace:\nconstructor(115792089237316195423570985008687907853269984665640564039457584007913129639934)
|
2020-09-25 17:09:06 +00:00
|
|
|
// Warning 4984: (314-319): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
2020-12-02 17:40:48 +00:00
|
|
|
// Warning 6328: (302-320): CHC: Assertion violation happens here.\nCounterexample:\na = 0\nx = 0\n\n\nTransaction trace:\nconstructor(0)
|