Source file test/typeparam/issue53406.go
1 // compile 2 3 // Copyright 2022 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 func main() { 10 f[int]() 11 } 12 13 func f[T1 any]() { 14 var x Outer[T1, int] 15 x.M() 16 } 17 18 type Outer[T1, T2 any] struct{ Inner[T2] } 19 20 type Inner[_ any] int 21 22 func (Inner[_]) M() {} 23