1// run
2
3// Copyright 2013 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Issue 4748.
8// This program used to complain because inlining created two exit labels.
9
10package main
11
12func jump() {
13        goto exit
14exit:
15        return
16}
17func main() {
18        jump()
19        jump()
20}
21