Files
llgo/cl/_testrt/unreachable/in.go

15 lines
155 B
Go
Raw Normal View History

2024-04-29 18:33:02 +08:00
package main
import (
"github.com/goplus/llgo/internal/runtime/c"
)
func foo() {
c.Unreachable()
}
func main() {
foo()
2024-04-30 08:23:55 +08:00
c.Printf(c.Str("Hello\n"))
2024-04-29 18:33:02 +08:00
}