blob: fb1b009c3cec8e8280ba7ccb6bde3d760648fc5b [file] [log] [blame]
package main
import . "swigtests/li_cmalloc"
func main() {
p := Malloc_int()
Free_int(p)
ok := false
func() {
defer func() {
if recover() != nil {
ok = true
}
}()
p = Calloc_int(-1)
if p == nil {
ok = true
}
Free_int(p)
}()
if !ok {
panic(0)
}
}