Source file test/fixedbugs/issue74836.go

     1  // compile
     2  
     3  // Copyright 2025 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 main
     8  
     9  type T struct {
    10  	a [20]int
    11  }
    12  
    13  func f(x [4]int) {
    14  	g(T{}, x)
    15  }
    16  
    17  func g(t T, x [4]int)
    18  

View as plain text