报告在组合字面量、函数调用实参和函数形参列表中的换行前缺少尾随逗号。

示例:

func f(f int) (
 int,
 bool   // 缺少尾随逗号
){
 println(1, 2  // 缺少尾随逗号
 )
}