github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/switch9.gno (about)

     1  package main
     2  
     3  func main() {
     4  	var i interface{} = "truc"
     5  
     6  	switch i.(type) {
     7  	case string:
     8  		println("string")
     9  		fallthrough
    10  	default:
    11  		println("unknown")
    12  	}
    13  }
    14  
    15  // Error:
    16  // 9:3: cannot fallthrough in type switch