Source file test/fixedbugs/issue81241.go

     1  // errorcheck
     2  
     3  // Copyright 2026 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  //go:build linux && 386
     8  
     9  package p
    10  
    11  var _ struct {
    12  	a, b [1 << 30]byte // ERROR "type struct .* too large"
    13  }
    14  

View as plain text