aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue66575.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue66575.go')
-rw-r--r--test/fixedbugs/issue66575.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/fixedbugs/issue66575.go b/test/fixedbugs/issue66575.go
new file mode 100644
index 0000000000..1ad6ca0b70
--- /dev/null
+++ b/test/fixedbugs/issue66575.go
@@ -0,0 +1,31 @@
+// run
+
+// Copyright 2024 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 main
+
+var (
+ v0 = initv0()
+ v1 = initv1()
+)
+
+const c = "c"
+
+func initv0() string {
+ println("initv0")
+ if c != "" { // have a dependency on c
+ return ""
+ }
+ return ""
+}
+
+func initv1() string {
+ println("initv1")
+ return ""
+}
+
+func main() {
+ // do nothing
+}