```solidity interface I { function version() external view returns (uint256); } contract C is I { uint256 public constant override version = 1; } ``` Due to the `override` specifier, the naming schema should not be checked at `C.version`.
Due to the
overridespecifier, the naming schema should not be checked atC.version.