aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/issue45547.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2021-07-28 12:59:14 -0700
committerMatthew Dempsky <mdempsky@google.com>2021-07-28 21:41:07 +0000
commitadedf54288e826bd93ccf22ad104f768d42289d4 (patch)
tree2fe786ecc9202827525f52896b45ce1e43bbf671 /test/typeparam/issue45547.go
parent53557530093938e19c21f6b02a482939ac6e634b (diff)
downloadgo-adedf54288e826bd93ccf22ad104f768d42289d4.tar.gz
go-adedf54288e826bd93ccf22ad104f768d42289d4.zip
[dev.typeparams] test: rename blank functions
This CL renames blank functions in the test/ directory so that they don't rely on the compiler doing anything more than typechecking them. In particular, I ran this search to find files that used blank functions and methods: $ git grep -l '^func.*\b_(' | xargs grep -n '^' | grep '\.go:1:' | grep -v '// errorcheck$' I then skipped updating a few files: * blank.go * fixedbugs/issue11699.go * fixedbugs/issue29870.go These tests specifically check that blank functions/methods work. * interface/fail.go Not sure the motivation for the blank method here, but it's empty anyway. * typeparam/tparam1.go Type-checking test, but uses "-G" (to use types2 instead of typecheck). Updates #47446. Change-Id: I9ec1714f499808768bd0dcd7ae6016fb2b078e5e Reviewed-on: https://go-review.googlesource.com/c/go/+/338094 Trust: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org>
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]()
}