blob: b30c27ec44b2b35efb0f0c8c3a750e3677a5a01a [file] [log] [blame]
Russ Coxd2cc9882012-02-16 23:50:37 -05001// errorcheck
Russ Cox66f09fd2011-03-15 14:05:37 -04002
3// Copyright 2011 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
Rob Pike501f0b52012-02-23 18:47:26 +11007// Verify that erroneous labels are caught by the compiler.
8// This set is caught by pass 1.
9// Does not compile.
Russ Cox66f09fd2011-03-15 14:05:37 -040010
11package main
12
13var x int
14
15func f() {
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070016L1: // ERROR "label .*L1.* defined and not used"
Russ Cox66f09fd2011-03-15 14:05:37 -040017 for {
18 }
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070019L2: // ERROR "label .*L2.* defined and not used"
Russ Cox66f09fd2011-03-15 14:05:37 -040020 select {
21 }
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070022L3: // ERROR "label .*L3.* defined and not used"
Russ Cox66f09fd2011-03-15 14:05:37 -040023 switch {
24 }
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070025L4: // ERROR "label .*L4.* defined and not used"
Russ Cox66f09fd2011-03-15 14:05:37 -040026 if true {
27 }
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070028L5: // ERROR "label .*L5.* defined and not used"
Russ Cox66f09fd2011-03-15 14:05:37 -040029 f()
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070030L6: // GCCGO_ERROR "previous"
Russ Cox66f09fd2011-03-15 14:05:37 -040031 f()
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070032L6: // ERROR "label .*L6.* already defined"
Russ Cox66f09fd2011-03-15 14:05:37 -040033 f()
34 if x == 20 {
35 goto L6
36 }
37
38L7:
39 for {
40 break L7
41 }
42
43L8:
44 for {
45 if x == 21 {
46 continue L8
47 }
48 }
49
50L9:
51 switch {
52 case true:
53 break L9
Ian Lance Taylor8beb4be2011-03-25 10:36:46 -070054 defalt: // ERROR "label .*defalt.* defined and not used"
Russ Cox66f09fd2011-03-15 14:05:37 -040055 }
56
57L10:
58 select {
59 default:
60 break L10
61 }
62}