7 lines
83 B
Plaintext
7 lines
83 B
Plaintext
unit okdefer1;
|
|
|
|
pub fn cleanup(p: ^i32) -> void {
|
|
defer { mem.destroy(p); }
|
|
}
|
|
|