mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
35 lines
602 B
Solidity
35 lines
602 B
Solidity
abstract contract D {
|
|
function d() virtual public {}
|
|
}
|
|
|
|
contract A {
|
|
int x = 0;
|
|
|
|
function f() virtual public view {
|
|
assert(x == 0); // should hold
|
|
assert(x == 1); // should fail
|
|
}
|
|
}
|
|
contract C is A {
|
|
constructor() {
|
|
x = 1;
|
|
}
|
|
|
|
function call(D d) public {
|
|
d.d();
|
|
}
|
|
|
|
function f() public view override {
|
|
assert(x == 1); // should hold
|
|
//Disabled because of Spacer nondeterminism.
|
|
//assert(x == 0); // should fail
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// SMTIgnoreInv: yes
|
|
// SMTIgnoreOS: macos
|
|
// ----
|
|
// Warning 6328: (154-168): CHC: Assertion violation happens here.
|