]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/fixedbugs/issue4099.go
cmd/compile/internal/inl: inline based on scoring when GOEXPERIMENT=newinliner
[gostls13.git] / test / fixedbugs / issue4099.go
index 5a4ea7c9988dce038eb5d1dd45652ee1856ddfab..7e9790ff68876c090ba46575211856c1da82f704 100644 (file)
@@ -1,5 +1,8 @@
 // errorcheck -0 -m
 
+//go:build !goexperiment.newinliner
+// +build !goexperiment.newinliner
+
 // Copyright 2013 The Go Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
@@ -20,7 +23,7 @@ func F2([]byte)
 func G() {
        var buf1 [10]byte
        F1(buf1[:])
-       
+
        var buf2 [10]byte // ERROR "moved to heap: buf2"
        F2(buf2[:])
 }