Source file test/typeparam/issue49547.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 import "fmt" 10 11 type foo int 12 13 func main() { 14 want := "main.F[main.foo]" 15 got := fmt.Sprintf("%T", F[foo]{}) 16 if got != want { 17 fmt.Printf("want: %s, got: %s\n", want, got) 18 } 19 } 20 21 type F[T any] struct { 22 } 23