2020-06-03 11:53:11 +00:00
|
|
|
contract C1 {
|
|
|
|
function f() external pure returns(int) { return 42; }
|
|
|
|
}
|
|
|
|
|
|
|
|
contract C is C1 {
|
|
|
|
int override f;
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// TypeError 8022: (96-110): Override can only be used with public state variables.
|