From dd1868f2ca1f9ca7e2d6d1bfc15c601649896fdd Mon Sep 17 00:00:00 2001 From: sivchari Date: Fri, 26 Nov 2021 16:18:51 +0900 Subject: [PATCH] test/fixedbugs: fix go directive of issue16008.go This change modifies issue16008.go I fixed // go:noinline to //go:noinline --- 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 }