Text file src/cmd/compile/testdata/script/issue70173.txt

     1  go run main.go
     2  ! stdout .
     3  ! stderr .
     4  
     5  -- main.go --
     6  
     7  package main
     8  
     9  func main() {
    10  	switch {
    11  	case true:
    12  	_:
    13  		fallthrough
    14  	default:
    15  	}
    16  	switch {
    17  	case true:
    18  	_:
    19  	_:
    20  		fallthrough
    21  	default:
    22  	}
    23  }
    24  

View as plain text