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