Source file test/fixedbugs/issue81036.go

     1  // compile
     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  package p
     8  
     9  type big struct {
    10  	_ [1 << 24]byte
    11  	f [2]float32
    12  }
    13  
    14  var x big
    15  
    16  func load() [2]float32   { return x.f }
    17  func store(v [2]float32) { x.f = v }
    18  

View as plain text