Home | History | Annotate | Download | only in test

Lines Matching full:func

14 func main() {
24 func die() {
28 func mustRecover(x interface{}) {
48 func mustNotRecover() {
56 func withoutRecover() {
60 func test1() {
63 defer func() {
70 func test2() {
73 defer func() {
85 func test3() {
88 defer func() {
96 func test4() {
99 defer func() {
105 func test5() {
108 defer func() {
114 func test6() {
118 defer func() {
119 defer recover() // like a normal call from this func; runs because mustRecover stops the panic
126 func test7() {
129 // because it runs called from panic, not from the func,
135 defer func() {