aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inheritance/override/state_variable_function.sol
blob: 0f05cc8eb67da980f8223a7d84d2d8f02dad252b (plain) (blame)
1
2
3
4
5
6
7
8
contract A {
    uint public x;
}
contract C is A {
    function x() public returns (uint);
}
// ----
// DeclarationError: (50-85): Identifier already declared.