aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/types2/testdata/fixedbugs/issue45548.go2
blob: b8ba0ad4a70915b4edaca42bb24ca60f1088a2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package p

func f[F interface{~*Q}, G interface{~*R}, Q, R any](q Q, r R) {}

func _() {
	f[*float64, *int](1, 2)
	f[*float64](1, 2)
	f(1, 2)
}