aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/mdempsky/2.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/mdempsky/2.go')
-rw-r--r--test/typeparam/mdempsky/2.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/typeparam/mdempsky/2.go b/test/typeparam/mdempsky/2.go
new file mode 100644
index 0000000000..f09730f949
--- /dev/null
+++ b/test/typeparam/mdempsky/2.go
@@ -0,0 +1,20 @@
+// compile -G=3
+
+// 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 main
+
+type T[A, B, C any] int
+
+func (T[A, B, C]) m(x int) {
+ if x <= 0 {
+ return
+ }
+ T[B, C, A](0).m(x - 1)
+}
+
+func main() {
+ T[int8, int16, int32](0).m(3)
+}