aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/scoping/double_function_declaration.sol
blob: 2841fd382711560e9efeb0e42f04fc69d4e1e7d7 (plain) (blame)
1
2
3
4
5
6
contract test {
    function fun() public { }
    function fun() public { }
}
// ----
// DeclarationError: Function with same name and arguments defined twice.