Home | History | Annotate | Download | only in fixedbugs

Lines Matching full:func

16 func main() {
18 shouldPanic("len out of range", func() {_ = make(T, n)})
19 shouldPanic("cap out of range", func() {_ = make(T, 0, n)})
24 shouldPanic("len out of range", func() {_ = make(T, n)})
25 shouldPanic("cap out of range", func() {_ = make(T, 0, n)})
27 shouldPanic("len out of range", func() {_ = make(T, n)})
28 shouldPanic("cap out of range", func() {_ = make(T, 0, n)})
31 shouldPanic("len out of range", func() {_ = make(T, n)})
32 shouldPanic("cap out of range", func() {_ = make(T, 0, n)})
36 func shouldPanic(str string, f func()) {
37 defer func() {