solidity/test/libsolidity/smtCheckerTests/inheritance/functions_1.sol

26 lines
529 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
// 2 warnings, A.f and A.g
contract A {
uint x;
2019-11-05 17:25:34 +00:00
function f() public virtual view {
assert(x == 1);
}
function g() public view {
assert(x == 1);
}
}
// 2 warnings, B.f and A.g
contract B is A {
2019-11-05 16:55:05 +00:00
function f() public view override {
assert(x == 1);
}
}
// ----
2019-11-05 17:25:34 +00:00
// Warning: (121-135): Assertion violation happens here
// Warning: (170-184): Assertion violation happens here
// Warning: (276-290): Assertion violation happens here
// Warning: (170-184): Assertion violation happens here