Source file src/internal/types/testdata/fixedbugs/issue50729b.go
1 // -gotypesalias=1 2 3 // Copyright 2023 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 d[T any] struct{} 10 type ( 11 b d[a] 12 ) 13 14 type a = func(c) 15 type c struct{ a } 16