solidity/test/libsolidity/syntaxTests/viewPureChecker/access_to_base_member_function.sol
2020-01-08 16:12:06 +01:00

12 lines
288 B
Solidity

contract A {
function x() public {}
}
contract B is A {
function f() public view {
A.x();
}
}
// ----
// TypeError: (100-105): Function declared as "view", but this expression (potentially) modifies the state and thus requires non-payable (the default) or "payable".