mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
473 B
Solidity
26 lines
473 B
Solidity
contract C {
|
|
uint a;
|
|
constructor(uint x) {
|
|
a = x;
|
|
}
|
|
}
|
|
|
|
abstract contract B is C {
|
|
constructor(uint x) {
|
|
a = x;
|
|
}
|
|
}
|
|
|
|
contract A is B {
|
|
constructor(uint x) B(x) C(x + 2) {
|
|
assert(a == x);
|
|
assert(a == x + 1);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 4984: (171-176='x + 2'): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 6328: (200-218='assert(a == x + 1)'): CHC: Assertion violation happens here.
|