1 2 3 4 5 6 7 8 9
contract A { uint public x; } contract C is A { function x() public returns (uint); } // ---- // DeclarationError: (50-85): Identifier already declared. // TypeError: (50-85): Redeclaring an already implemented function as abstract