blob: 3e7a1848270fe66794e2c7b725968128f3e88d25 [file] [log] [blame]
Rémy Oudompheng892fa3a2012-10-07 17:35:21 +02001// errorcheck
2
3// Copyright 2012 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Issue 3757: unhelpful typechecking loop message
8// for constants that refer to themselves.
9
10package main
11
12const a = a // ERROR "refers to itself|definition loop"
13
14const (
15 X = A
16 A = B // ERROR "refers to itself|definition loop"
17 B = D
18 C, D = 1, A
19)
20
21func main() {
22}