aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/multiple_function_param_trailing_comma.sol
blob: ae65b33cae931aab9ccff5672d3f0a8c8b46ab5c (plain) (blame)
1
2
3
4
5
contract test {
    function(uint a, uint b,) {}
}
// ----
// ParserError: (40-41): Unexpected trailing comma in parameter list.