]> Cypherpunks repositories - gostls13.git/commitdiff
test/fixedbugs: fix go directive of issue16008.go
authorsivchari <shibuuuu5@gmail.com>
Fri, 26 Nov 2021 07:45:44 +0000 (07:45 +0000)
committerEmmanuel Odeke <emmanuel@orijtech.com>
Fri, 26 Nov 2021 13:06:40 +0000 (13:06 +0000)
This change modifies issue16008.go
I fixed // go:noinline to //go:noinline

Change-Id: Ic133eec51f0a7c4acf8cb22d25473ca08f1e916c
GitHub-Last-Rev: dd1868f2ca1f9ca7e2d6d1bfc15c601649896fdd
GitHub-Pull-Request: golang/go#49801
Reviewed-on: https://go-review.googlesource.com/c/go/+/367174
Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com>
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
Trust: Alberto Donizetti <alb.donizetti@gmail.com>
Run-TryBot: Alberto Donizetti <alb.donizetti@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>

test/fixedbugs/issue16008.go

index 45457cdb7f5682e34974bcbb553d902f12cb0bf7..b88e2351b7f58d8d0953ba63f0c4a2ff48149895 100644 (file)
@@ -37,7 +37,7 @@ type Node struct {
 type MemoryStore struct {
 }
 
-// go:noinline
+//go:noinline
 func setupNodes(n int) (s *MemoryStore, nodeIDs []string) {
        return
 }