blob: 30b65bce8335d982141f0c6680cb157401452a37 [file] [log] [blame]
Daniel Morsing48af64b2012-10-22 19:14:30 +02001// errorcheck
2
Emmanuel Odeke53fd5222016-04-10 14:32:26 -07003// Copyright 2012 The Go Authors. All rights reserved.
Daniel Morsing48af64b2012-10-22 19:14:30 +02004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package foo
8
9var s [][10]int
Rémy Oudompheng004dd3d72013-06-20 08:21:14 +020010const m = len(s[len(s)-1]) // ERROR "is not a constant|is not constant"
Daniel Morsing48af64b2012-10-22 19:14:30 +020011