mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
33 lines
645 B
Solidity
33 lines
645 B
Solidity
contract C {
|
|
uint a;
|
|
constructor(uint x) {
|
|
a = x;
|
|
}
|
|
}
|
|
|
|
abstract contract B1 is C {
|
|
constructor(uint x) {
|
|
a = x;
|
|
}
|
|
}
|
|
|
|
contract B2 is C {
|
|
constructor(uint x) C(x + 2) {
|
|
a = x;
|
|
}
|
|
}
|
|
|
|
contract A is B2, B1 {
|
|
constructor(uint x) B1(x) B2(x) {
|
|
assert(a == x);
|
|
assert(a == x + 1);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 4984: (168-173): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 6328: (270-288): CHC: Assertion violation happens here.
|
|
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|