mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
4 lines
114 B
Solidity
4 lines
114 B
Solidity
interface ERC20 { function x() external returns (uint); }
|
|
contract C is ERC20 { uint public override x; }
|
|
// ----
|