summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug140.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug140.go')
-rw-r--r--test/fixedbugs/bug140.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug140.go b/test/fixedbugs/bug140.go
index e27b370e7..441c57a48 100644
--- a/test/fixedbugs/bug140.go
+++ b/test/fixedbugs/bug140.go
@@ -10,14 +10,14 @@ func main() {
if true {
} else {
L1:
+ goto L1
}
if true {
} else {
+ goto L2
L2:
main()
}
- goto L1
- goto L2
}
/*