Home | History | Annotate | Download | only in fixedbugs
      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"
     13 
     14 var b [1]int
     15 var _ = b[2:] // ERROR "invalid slice index 2"
     16