solidity/test/libsolidity/smtCheckerTests/functions/constructor_hierarchy_3.sol

26 lines
444 B
Solidity
Raw Normal View History

contract C {
uint a;
2020-06-23 12:14:24 +00:00
constructor(uint x) {
a = x;
}
}
2019-12-03 20:44:06 +00:00
abstract contract B is C {
2020-06-23 12:14:24 +00:00
constructor(uint x) {
a = x;
}
}
contract A is B {
2020-06-23 12:14:24 +00:00
constructor(uint x) B(x) C(x + 2) {
assert(a == x);
assert(a == x + 1);
}
}
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (200-218): CHC: Assertion violation happens here.
// Warning 4984: (171-176): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.