solidity/test/libsolidity/syntaxTests/viewPureChecker/access_to_base_member_function.sol

12 lines
247 B
Solidity
Raw Normal View History

contract A {
function x() public {}
}
contract B is A {
function f() public view {
A.x();
}
}
// ----
2022-02-17 15:52:36 +00:00
// TypeError 8961: (100-105): Function cannot be declared as view because this expression (potentially) modifies the state.