aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/138_similar_name_suggestions_expected.sol
blob: ef6e933a7d6e94e6df3f01d2573d8d39f9dfee61 (plain) (blame)
1
2
3
4
5
6
contract c {
    function func() public {}
    function g() public { fun(); }
}
// ----
// DeclarationError: (69-72): Undeclared identifier. Did you mean "func"?