// run// Copyright 2015 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.packagemainfuncf(jint){loop:fori:=0;i<4;i++{ifi==1{continueloop}println(j,i)}}funcmain(){loop:forj:=0;j<5;j++{f(j)ifj==3{breakloop}}}