mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
31 lines
596 B
Solidity
31 lines
596 B
Solidity
pragma experimental SMTChecker;
|
|
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) B2(x) B1(x) {
|
|
assert(a == x);
|
|
assert(a == x + 1);
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 4984: (200-205): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 4984: (314-319): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
|
// Warning 6328: (302-320): CHC: Assertion violation happens here.
|