Files
sing-box/experimental/libbox/debug.go
2026-04-10 16:24:25 +08:00

10 lines
134 B
Go

package libbox
import "time"
func TriggerGoPanic() {
time.AfterFunc(200*time.Millisecond, func() {
panic("debug go crash")
})
}