aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/246_multi_variable_declaration_wildcards_fail_5.sol
blob: 3d2d0705029bdb49d0e52ef58db6d75fddc2b461 (plain) (blame)
1
2
3
4
5
6
contract C {
    function one() public returns (uint);
    function f() public { var (,) = one(); }
}
// ----
// TypeError: (81-96): Wildcard both at beginning and end of variable declaration list is only allowed if the number of components is equal.