aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/multiple_event_arg_trailing_comma.sol
blob: bfbe7e5cb8c7e3917ba7929e3c98167778bfc222 (plain) (blame)
1
2
3
4
5
6
contract test {
    event Test(uint a, uint b,);
    function(uint a) {}
}
// ----
// ParserError: (45-46): Unexpected trailing comma in parameter list.