Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 178 Bytes

4028.md

File metadata and controls

16 lines (11 loc) · 178 Bytes

4028

There was a trailing comma or semicolon.

val x = (1, 2,)
(**          ^ trailing `,` *)

To fix

Remove the trailing separator.

val x = (1, 2)