mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
31 lines
665 B
Solidity
31 lines
665 B
Solidity
abstract contract D {
|
|
function d() public virtual ;
|
|
}
|
|
|
|
contract C {
|
|
bool a;
|
|
uint x;
|
|
D d;
|
|
function g() public returns (uint) {
|
|
x = 2;
|
|
d.d();
|
|
return x;
|
|
}
|
|
function f() public {
|
|
x = 1;
|
|
uint y = g();
|
|
assert(x == 2 || x == 1);
|
|
}
|
|
function h() public {
|
|
x = 3;
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 2072: (249-255): Unused local variable.
|
|
// Warning 1218: (271-295): CHC: Error trying to invoke SMT solver.
|
|
// Warning 6328: (271-295): CHC: Assertion violation might happen here.
|
|
// Warning 4661: (271-295): BMC: Assertion violation happens here.
|