Source file src/internal/types/testdata/fixedbugs/issue45548.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 func f[F interface{*Q}, G interface{*R}, Q, R any](q Q, r R) {} 8 9 func _() { 10 f[*float64, *int](1, 2) 11 f[*float64](1, 2) 12 f(1, 2) 13 } 14