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