| | |
| | |
| | |
| |
|
| | package main |
| |
|
| | import ( |
| | "fmt" |
| | "runtime" |
| | ) |
| |
|
| | func init() { |
| | register("Crash", Crash) |
| | register("DoublePanic", DoublePanic) |
| | register("ErrorPanic", ErrorPanic) |
| | register("StringerPanic", StringerPanic) |
| | register("DoubleErrorPanic", DoubleErrorPanic) |
| | register("DoubleStringerPanic", DoubleStringerPanic) |
| | register("StringPanic", StringPanic) |
| | register("NilPanic", NilPanic) |
| | register("CircularPanic", CircularPanic) |
| | register("RepanickedPanic", RepanickedPanic) |
| | register("RepanickedMiddlePanic", RepanickedMiddlePanic) |
| | register("RepanickedPanicSandwich", RepanickedPanicSandwich) |
| | register("DoublePanicWithSameValue", DoublePanicWithSameValue) |
| | } |
| |
|
| | func test(name string) { |
| | defer func() { |
| | if x := recover(); x != nil { |
| | fmt.Printf(" recovered") |
| | } |
| | fmt.Printf(" done\n") |
| | }() |
| | fmt.Printf("%s:", name) |
| | var s *string |
| | _ = *s |
| | fmt.Print("SHOULD NOT BE HERE") |
| | } |
| |
|
| | func testInNewThread(name string) { |
| | c := make(chan bool) |
| | go func() { |
| | runtime.LockOSThread() |
| | test(name) |
| | c <- true |
| | }() |
| | <-c |
| | } |
| |
|
| | func Crash() { |
| | runtime.LockOSThread() |
| | test("main") |
| | testInNewThread("new-thread") |
| | testInNewThread("second-new-thread") |
| | test("main-again") |
| | } |
| |
|
| | type P string |
| |
|
| | func (p P) String() string { |
| | |
| | |
| | runtime.GC() |
| | runtime.GC() |
| | runtime.GC() |
| | return string(p) |
| | } |
| |
|
| | |
| | |
| | func DoublePanic() { |
| | defer func() { |
| | panic(P("YYY")) |
| | }() |
| | panic(P("XXX")) |
| | } |
| |
|
| | |
| | |
| | type exampleError struct{} |
| |
|
| | func (e exampleError) Error() string { |
| | panic("important multi-line\nerror message") |
| | } |
| |
|
| | func ErrorPanic() { |
| | panic(exampleError{}) |
| | } |
| |
|
| | type examplePanicError struct{} |
| |
|
| | func (e examplePanicError) Error() string { |
| | panic(exampleError{}) |
| | } |
| |
|
| | func DoubleErrorPanic() { |
| | panic(examplePanicError{}) |
| | } |
| |
|
| | type exampleStringer struct{} |
| |
|
| | func (s exampleStringer) String() string { |
| | panic("important multi-line\nstringer message") |
| | } |
| |
|
| | func StringerPanic() { |
| | panic(exampleStringer{}) |
| | } |
| |
|
| | type examplePanicStringer struct{} |
| |
|
| | func (s examplePanicStringer) String() string { |
| | panic(exampleStringer{}) |
| | } |
| |
|
| | func DoubleStringerPanic() { |
| | panic(examplePanicStringer{}) |
| | } |
| |
|
| | func StringPanic() { |
| | panic("important multi-line\nstring message") |
| | } |
| |
|
| | func NilPanic() { |
| | panic(nil) |
| | } |
| |
|
| | type exampleCircleStartError struct{} |
| |
|
| | func (e exampleCircleStartError) Error() string { |
| | panic(exampleCircleEndError{}) |
| | } |
| |
|
| | type exampleCircleEndError struct{} |
| |
|
| | func (e exampleCircleEndError) Error() string { |
| | panic(exampleCircleStartError{}) |
| | } |
| |
|
| | func CircularPanic() { |
| | panic(exampleCircleStartError{}) |
| | } |
| |
|
| | func RepanickedPanic() { |
| | defer func() { |
| | panic(recover()) |
| | }() |
| | panic("message") |
| | } |
| |
|
| | func RepanickedMiddlePanic() { |
| | defer func() { |
| | recover() |
| | panic("outer") |
| | }() |
| | func() { |
| | defer func() { |
| | panic(recover()) |
| | }() |
| | func() { |
| | defer func() { |
| | recover() |
| | panic("middle") |
| | }() |
| | panic("inner") |
| | }() |
| | }() |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | func RepanickedPanicSandwich() { |
| | var outer any |
| | defer func() { |
| | recover() |
| | panic(outer) |
| | }() |
| | func() { |
| | defer func() { |
| | outer = recover() |
| | panic("inner") |
| | }() |
| | panic("outer") |
| | }() |
| | } |
| |
|
| | |
| | |
| | func DoublePanicWithSameValue() { |
| | var e any = "message" |
| | defer func() { |
| | panic(e) |
| | }() |
| | panic(e) |
| | } |
| |
|