1
0
mirror of https://github.com/golang/go synced 2024-09-24 17:10:13 -06:00
go/test/fixedbugs/bug070.go

26 lines
603 B
Go
Raw Normal View History

2008-07-15 11:44:02 -06:00
// $G $D/$F.go && $L $F.$A && ./$A.out
// Copyright 2009 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 i, k int;
2008-07-15 11:44:02 -06:00
outer:
for k=0; k<2; k++ {
print("outer loop top k ", k, "\n");
if k != 0 { panic("k not zero") } // inner loop breaks this one every time
2008-07-15 11:44:02 -06:00
for i=0; i<2; i++ {
if i != 0 { panic("i not zero") } // loop breaks every time
print("inner loop top i ", i, "\n");
2008-07-15 11:44:02 -06:00
if true {
print("do break\n");
2008-07-15 11:44:02 -06:00
break outer;
}
}
}
print("broke\n");
2008-07-15 11:44:02 -06:00
}