ssa: fix closure type

This commit is contained in:
Li Jie
2024-11-23 21:05:40 +08:00
parent e042aad819
commit 252f3f0bd6
5 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package main
/*
#include <stdlib.h>
*/
import "C"
func main() {
p := C.malloc(1024)
defer C.free(p)
}