mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
289 B
Solidity
12 lines
289 B
Solidity
contract A {
|
|
function x() public {}
|
|
}
|
|
|
|
contract B is A {
|
|
function f() public view {
|
|
A.x();
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 8961: (100-105): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|