14 lines
176 B
Go
14 lines
176 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
defer fmt.Println("code")
|
|
if false {
|
|
defer fmt.Println("unreacheable code")
|
|
}
|
|
|
|
return
|
|
defer fmt.Println("unreacheable code")
|
|
}
|