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