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