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: dd1868f2ca
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>
This commit is contained in:
sivchari 2021-11-26 07:45:44 +00:00 committed by Emmanuel Odeke
parent 45bae64015
commit a0506bdf7c

View file

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