aboutsummaryrefslogtreecommitdiff
path: root/test/typecheckloop.go
diff options
context:
space:
mode:
authorDave Cheney <dave@cheney.net>2015-09-05 14:43:50 +1000
committerDave Cheney <dave@cheney.net>2015-09-06 23:50:51 +0000
commitdab0dac01aa5074857ef8a2e089c3eda107a0fa1 (patch)
tree705d7715bd44c17333ae281a112224dee1833a5c /test/typecheckloop.go
parent63e2bed0ab93e6116b552453e45c0322777508f9 (diff)
downloadgo-dab0dac01aa5074857ef8a2e089c3eda107a0fa1.tar.gz
go-dab0dac01aa5074857ef8a2e089c3eda107a0fa1.zip
cmd/compile: convert typecheck_stack to []*Node
This one of a set of changes to make the transition away from NodeList easier by removing cases in which NodeList doesn't act semi-trivially like a []*Node. This CL was originally prepared by Josh Bleecher Snyder <josharian@gmail.com>. This change passes go build -toolexec 'toolstash -cmp' -a std. Change-Id: I4d041b343952f4a31f3150fd70669e08fcaa74f8 Reviewed-on: https://go-review.googlesource.com/14305 Run-TryBot: Dave Cheney <dave@cheney.net> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'test/typecheckloop.go')
-rw-r--r--test/typecheckloop.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/typecheckloop.go b/test/typecheckloop.go
new file mode 100644
index 0000000000..3b3e78858e
--- /dev/null
+++ b/test/typecheckloop.go
@@ -0,0 +1,14 @@
+// errorcheck
+
+// Copyright 2015 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.
+
+// Verify that constant definition loops are caught during
+// typechecking and that the errors print correctly.
+
+package main
+
+const A = 1 + B // ERROR "constant definition loop\n.*A uses B\n.*B uses C\n.*C uses A"
+const B = C - 1 // ERROR "constant definition loop\n.*B uses C\n.*C uses B"
+const C = A + B + 1