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) B2(x) B1(x) {
|
2019-09-26 14:12:27 +00:00
|
|
|
assert(a == x);
|
|
|
|
assert(a == x + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-07-23 10:58:15 +00:00
|
|
|
// Warning 6328: (302-320): Assertion violation happens here
|
2020-06-23 12:14:24 +00:00
|
|
|
// Warning 2661: (200-205): Overflow (resulting value larger than 2**256 - 1) happens here
|
|
|
|
// Warning 2661: (200-205): Overflow (resulting value larger than 2**256 - 1) happens here
|
|
|
|
// Warning 2661: (314-319): Overflow (resulting value larger than 2**256 - 1) happens here
|