aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2020-05-14 07:51:10 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2020-05-14 15:18:29 +0000
commit364a05e2feab48611bb5e4f26f47a02b9b49a988 (patch)
tree0aa5fbe54769d57286b5f4a10471d57acc54af58 /test
parentf073395b73e2e5926a7bb996094a3e49ebc1d4dc (diff)
downloadgo-364a05e2feab48611bb5e4f26f47a02b9b49a988.tar.gz
go-364a05e2feab48611bb5e4f26f47a02b9b49a988.zip
cmd/compile: add test for issue 37246
CL 233857 fixed the underlying issue for #37246, which had arisen again as #38916. Add the test case from #37246 to ensure it stays fixed. Fixes #37246 Change-Id: If7fd75a096d2ce4364dc15509253c3882838161d Reviewed-on: https://go-review.googlesource.com/c/go/+/233941 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Michael Munday <mike.munday@ibm.com>
Diffstat (limited to 'test')
-rw-r--r--test/fixedbugs/issue37246.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixedbugs/issue37246.go b/test/fixedbugs/issue37246.go
new file mode 100644
index 0000000000..fe476daa39
--- /dev/null
+++ b/test/fixedbugs/issue37246.go
@@ -0,0 +1,23 @@
+// compile
+
+// Copyright 2020 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
+
+func main() {
+ var n, a, b int64
+ for i := int64(2); i < 10; i++ {
+ for j := i; j < 10; j++ {
+ if ((n % (i * j)) == 0) && (j > 1 && (n/(i*j)) == 1) {
+ a, b = i, 0
+ a = n / (i * j)
+ }
+ }
+ }
+
+ if a != b && a != n {
+ println("yes")
+ }
+}