mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
269 B
Solidity
9 lines
269 B
Solidity
contract A {
|
|
function foo() public payable virtual returns (uint256) {}
|
|
}
|
|
contract B is A {
|
|
function foo() public view override virtual returns (uint256) {}
|
|
}
|
|
// ----
|
|
// TypeError 6959: (94-158): Overriding function changes state mutability from "payable" to "view".
|