mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
2827923800
Fixes #16428. Change-Id: I78d37472e228402bb3c06d7ebd441952386fa38a Reviewed-on: https://go-review.googlesource.com/31731 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org>
12 lines
264 B
Go
12 lines
264 B
Go
// errorcheck
|
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package p
|
|
|
|
var (
|
|
b = [...]byte("abc") // ERROR "outside of array literal"
|
|
s = len(b)
|
|
)
|