import "libc";

main :: proc(): int {
    a: *int = malloc(sizeof(:int));
    defer free(a);
    return 0;
}