// errorcheck// 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.packagemainfuncmain(){L:for{for{breakL2// ERROR "L2"continueL2// ERROR "L2"}}L1:x:=1_=xfor{breakL1// ERROR "L1"continueL1// ERROR "L1"}gotoL}