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

示例:

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