test/fixedbugs: fix go directive of issue16008.go

This change modifies issue16008.go
I fixed // go:noinline to //go:noinline
This commit is contained in:
sivchari 2021-11-26 16:18:51 +09:00
parent 45bae64015
commit dd1868f2ca
1 changed files with 1 additions and 1 deletions

View File

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