aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/single_return_param_trailing_comma.sol
blob: 99f918191bfd4cdfc0e5b04290de2e20e190c21c (plain) (blame)
1
2
3
4
5
contract test {
    function() returns (uint a,) {}
}
// ----
// ParserError: (43-44): Unexpected trailing comma in parameter list.