solidity/test/libsolidity/syntaxTests/inheritance/override/override.sol

6 lines
107 B
Solidity
Raw Normal View History

2019-08-13 11:00:46 +00:00
contract X {
int public override testvar;
function test() internal override returns (uint256);
}
// ----