mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
439 B
Solidity
30 lines
439 B
Solidity
abstract contract D {
|
|
function d() external virtual;
|
|
}
|
|
|
|
contract C {
|
|
uint x;
|
|
uint y;
|
|
D d;
|
|
|
|
function inc2() public {
|
|
if (y == 1)
|
|
x = 1;
|
|
}
|
|
function inc1() public {
|
|
if (x == 0)
|
|
y = 1;
|
|
}
|
|
|
|
function f() public {
|
|
uint oldX = x;
|
|
// Removed because Spacer 4.8.9 seg faults.
|
|
//d.d();
|
|
assert(oldX == x);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 2018: (203-322): Function state mutability can be restricted to view
|