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

26 lines
521 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
// 2 warnings, A.f and A.g
contract A {
uint x;
function f() public 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 == 0);
}
}
// ----
// Warning: (113-127): Assertion violation happens here
// Warning: (162-176): Assertion violation happens here
2019-11-05 16:55:05 +00:00
// Warning: (268-282): Assertion violation happens here
// Warning: (162-176): Assertion violation happens here