aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/093_function_event_in_contract_clash.sol
blob: 7b4fcde9f9322530b7b0d3788202b58e646c0287 (plain) (blame)
1
2
3
4
5
6
7
8
contract A {
    event dup();
    function dup() public returns (uint) {
        return 1;
    }
}
// ----
// DeclarationError: (34-96): Identifier already declared.