Source file src/internal/types/testdata/fixedbugs/issue43527.go
1 // Copyright 2021 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package p 6 7 const L = 10 8 9 type ( 10 _ [L]struct{} 11 _ [A /* ERROR "undefined array length A or missing type constraint" */ ]struct{} 12 _ [B /* ERROR "invalid array length B" */ ]struct{} 13 _[A any] struct{} 14 15 B int 16 ) 17