Source file test/fixedbugs/issue42058b.go

     1  // errorcheck
     2  
     3  // Copyright 2020 The Go Authors. All rights reserved.  Use of this
     4  // source code is governed by a BSD-style license that can be found in
     5  // the LICENSE file.
     6  
     7  package p
     8  
     9  var c chan [2 << 16]byte // GC_ERROR "channel element type too large"
    10  
    11  func f() {
    12  	_ = 42
    13  }
    14  

View as plain text