summaryrefslogtreecommitdiffstats
path: root/src/cmd/compile/internal/test/issue57434_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/compile/internal/test/issue57434_test.go')
-rw-r--r--src/cmd/compile/internal/test/issue57434_test.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/cmd/compile/internal/test/issue57434_test.go b/src/cmd/compile/internal/test/issue57434_test.go
new file mode 100644
index 0000000..6a34b54
--- /dev/null
+++ b/src/cmd/compile/internal/test/issue57434_test.go
@@ -0,0 +1,38 @@
+// Copyright 2023 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.
+
+package test
+
+import (
+ "testing"
+)
+
+var output int
+
+type Object struct {
+ Val int
+}
+
+func (o *Object) Initialize() *Object {
+ o.Val = 5
+ return o
+}
+
+func (o *Object) Update() *Object {
+ o.Val = o.Val + 1
+ return o
+}
+
+func TestAutotmpLoopDepth(t *testing.T) {
+ f := func() {
+ for i := 0; i < 10; i++ {
+ var obj Object
+ obj.Initialize().Update()
+ output = obj.Val
+ }
+ }
+ if n := testing.AllocsPerRun(10, f); n > 0 {
+ t.Error("obj moved to heap")
+ }
+}