Guest User

Untitled

a guest
Jan 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.12 KB | None | 0 0
  1. func TestPanic(t *testing.T) {
  2.    defer func() { recover() }
  3.    go func() { panic("unrecoverable, bwa ha ha!") }()
  4. }
Add Comment
Please, Sign In to add comment