aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/issue45547.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/issue45547.go')
-rw-r--r--test/typeparam/issue45547.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/typeparam/issue45547.go b/test/typeparam/issue45547.go
index 0a08d66b70..b354d4d7f6 100644
--- a/test/typeparam/issue45547.go
+++ b/test/typeparam/issue45547.go
@@ -11,7 +11,7 @@ func f[T any]() (f, g T) { return f, g }
// Tests for generic function instantiation on the right hande side of multi-value
// assignments.
-func _() {
+func g() {
// Multi-value assignment within a function
var _, _ = f[int]()
}