From a0506bdf7c9741974c54d9dac55517025ba2572d Mon Sep 17 00:00:00 2001 From: sivchari Date: Fri, 26 Nov 2021 07:45:44 +0000 Subject: [PATCH] test/fixedbugs: fix go directive of issue16008.go 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 Reviewed-by: Emmanuel Odeke Trust: Alberto Donizetti Run-TryBot: Alberto Donizetti TryBot-Result: Go Bot --- test/fixedbugs/issue16008.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixedbugs/issue16008.go b/test/fixedbugs/issue16008.go index 45457cdb7f..b88e2351b7 100644 --- a/test/fixedbugs/issue16008.go +++ b/test/fixedbugs/issue16008.go @@ -37,7 +37,7 @@ type Node struct { type MemoryStore struct { } -// go:noinline +//go:noinline func setupNodes(n int) (s *MemoryStore, nodeIDs []string) { return } -- 2.48.1