2012-04-02 11:00:55 -04:00
|
|
|
// errorcheck
|
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2012-04-02 11:00:55 -04:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
var a = []int{
|
2022-03-30 13:23:37 -07:00
|
|
|
3 // ERROR "need trailing comma before newline in composite literal|possibly missing comma or }"
|
2012-04-02 11:00:55 -04:00
|
|
|
}
|