Source file test/typeparam/issue47925.go
1 // run 2 3 // Copyright 2021 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 myifacer[T any] interface{ do(T) error } 10 11 type stuff[T any] struct{} 12 13 func (s stuff[T]) run() interface{} { 14 var i myifacer[T] 15 return i 16 } 17 18 func main() { 19 stuff[int]{}.run() 20 } 21