Files
sing-box/experimental/libbox/debug.go
T
2026-06-25 17:35:25 +08:00

10 lines
134 B
Go

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