solidity/test/libsolidity/syntaxTests/inheritance/override/implement_private_function_by_public_variable.sol
2019-12-05 12:48:52 +00:00

11 lines
368 B
Solidity

abstract contract X { function test() private virtual returns (uint256); }
contract Y is X {
uint256 public override test = 42;
}
contract T {
constructor() public { new Y(); }
}
// ----
// TypeError: (97-130): Public state variables can only override functions with external visibility.
// TypeError: (22-72): "virtual" and "private" cannot be used together.