Source file test/fixedbugs/bug495.go

     1  // compile
     2  
     3  // Copyright 2015 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  // Gccgo used to give an incorrect error
     8  // bug495.go:16:2: error: missing statement after label
     9  
    10  package p
    11  
    12  func F(i int) {
    13  	switch i {
    14  	case 0:
    15  		goto lab
    16  	lab:
    17  		fallthrough
    18  	case 1:
    19  	}
    20  }
    21  

View as plain text