2012-02-16 21:49:30 -07:00
|
|
|
// run
|
2009-07-29 15:49:01 -06:00
|
|
|
|
|
|
|
// 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() {
|
|
|
|
L:
|
|
|
|
for i := 0; i < 1; i++ {
|
2011-03-15 12:05:07 -06:00
|
|
|
L1:
|
2009-07-29 15:49:01 -06:00
|
|
|
for {
|
2011-03-15 12:05:07 -06:00
|
|
|
break L
|
2009-07-29 15:49:01 -06:00
|
|
|
}
|
2011-03-15 12:05:07 -06:00
|
|
|
panic("BUG: not reached - break")
|
2011-06-17 04:07:13 -06:00
|
|
|
if false {
|
|
|
|
goto L1
|
|
|
|
}
|
2009-07-29 15:49:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
L2:
|
|
|
|
for i := 0; i < 1; i++ {
|
2011-03-15 12:05:07 -06:00
|
|
|
L3:
|
2009-07-29 15:49:01 -06:00
|
|
|
for {
|
2011-03-15 12:05:07 -06:00
|
|
|
continue L2
|
2009-07-29 15:49:01 -06:00
|
|
|
}
|
2011-03-15 12:05:07 -06:00
|
|
|
panic("BUG: not reached - continue")
|
2011-06-17 04:07:13 -06:00
|
|
|
if false {
|
|
|
|
goto L3
|
|
|
|
}
|
2009-07-29 15:49:01 -06:00
|
|
|
}
|
|
|
|
}
|