aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/equal.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2021-07-28 13:39:30 -0700
committerMatthew Dempsky <mdempsky@google.com>2021-07-28 21:40:40 +0000
commit53557530093938e19c21f6b02a482939ac6e634b (patch)
tree18d51aa04629aaad621399e997306118b36a5952 /test/typeparam/equal.go
parent473e493d18c277d69e40a4930af045d474ff2be4 (diff)
downloadgo-53557530093938e19c21f6b02a482939ac6e634b.tar.gz
go-53557530093938e19c21f6b02a482939ac6e634b.zip
[dev.typeparams] test/typeparam: gofmt -w
We don't usually reformat the test directory, but all of the files in test/typeparam are syntactically valid. I suspect the misformattings here are because developers aren't re-installing gofmt with -tags=typeparams, not intentionally exercising non-standard formatting. Change-Id: I3767d480434c19225568f3c7d656dc8589197183 Reviewed-on: https://go-review.googlesource.com/c/go/+/338093 Trust: Matthew Dempsky <mdempsky@google.com> Trust: Robert Griesemer <gri@golang.org> 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/equal.go')
-rw-r--r--test/typeparam/equal.go20
1 files changed, 9 insertions, 11 deletions
diff --git a/test/typeparam/equal.go b/test/typeparam/equal.go
index 6776b19d12..a1d3e8ae02 100644
--- a/test/typeparam/equal.go
+++ b/test/typeparam/equal.go
@@ -40,7 +40,7 @@ func (x myint) foo() {
func k[T comparable](t T, i interface{}) bool {
// Compare derived type value to interface.
- return struct{a, b T}{t, t} == i
+ return struct{ a, b T }{t, t} == i
}
func main() {
@@ -51,21 +51,19 @@ func main() {
assert(h(myint(3), myint(3)))
assert(!h(myint(3), myint(5)))
- type S struct { a, b float64 }
+ type S struct{ a, b float64 }
- assert(f(S{3,5}, S{3,5}))
- assert(!f(S{3,5}, S{4,6}))
- assert(g(S{3,5}, S{3,5}))
- assert(!g(S{3,5}, S{4,6}))
+ assert(f(S{3, 5}, S{3, 5}))
+ assert(!f(S{3, 5}, S{4, 6}))
+ assert(g(S{3, 5}, S{3, 5}))
+ assert(!g(S{3, 5}, S{4, 6}))
- assert(k(3, struct{a, b int}{3, 3}))
- assert(!k(3, struct{a, b int}{3, 4}))
+ assert(k(3, struct{ a, b int }{3, 3}))
+ assert(!k(3, struct{ a, b int }{3, 4}))
}
-func assert(b bool) {
+func assert(b bool) {
if !b {
panic("assertion failed")
}
}
-
-