summaryrefslogtreecommitdiffstats
path: root/test/typeparam/gencrawler.dir/a.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/gencrawler.dir/a.go')
-rw-r--r--test/typeparam/gencrawler.dir/a.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/typeparam/gencrawler.dir/a.go b/test/typeparam/gencrawler.dir/a.go
new file mode 100644
index 0000000..50d6b4a
--- /dev/null
+++ b/test/typeparam/gencrawler.dir/a.go
@@ -0,0 +1,27 @@
+// 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 a
+
+var V val[int]
+
+type val[T any] struct {
+ valx T
+}
+
+func (v *val[T]) Print() {
+ v.print1()
+}
+
+func (v *val[T]) print1() {
+ println(v.valx)
+}
+
+func (v *val[T]) fnprint1() {
+ println(v.valx)
+}
+
+func FnPrint[T any](v *val[T]) {
+ v.fnprint1()
+}