Source file test/fixedbugs/issue20749.go

     1  // errorcheck
     2  
     3  // Copyright 2017 The Go Authors. All rights reserved.
     4  // Use of this source code is governed by a BSD-style
     5  // license that can be found in the LICENSE file.
     6  
     7  package p
     8  
     9  // Verify that the compiler complains even if the array
    10  // has length 0.
    11  var a [0]int
    12  var _ = a[2:] // ERROR "invalid slice index 2|array index out of bounds|index 2 out of bounds"
    13  
    14  var b [1]int
    15  var _ = b[2:] // ERROR "invalid slice index 2|array index out of bounds|index 2 out of bounds"
    16  

View as plain text