Source file test/fixedbugs/issue4748.go

     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  
    10  package main
    11  
    12  func jump() {
    13          goto exit
    14  exit:
    15          return
    16  }
    17  func main() {
    18          jump()
    19          jump()
    20  }
    21  

View as plain text