2019-09-26 14:12:27 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
contract C {
|
|
|
|
uint a;
|
|
|
|
constructor(uint x) public {
|
|
|
|
a = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 20:44:06 +00:00
|
|
|
abstract contract B is C {
|
2019-09-26 14:12:27 +00:00
|
|
|
constructor(uint x) public {
|
|
|
|
a = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract A is B {
|
|
|
|
constructor(uint x) B(x) C(x + 2) public {
|
|
|
|
assert(a == x);
|
|
|
|
assert(a == x + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 2661: (217-222): Overflow (resulting value larger than 2**256 - 1) happens here
|
|
|
|
// Warning 2661: (265-270): Overflow (resulting value larger than 2**256 - 1) happens here
|
|
|
|
// Warning 4661: (253-271): Assertion violation happens here
|