7 lines
89 B
Plaintext
7 lines
89 B
Plaintext
unit m5_bad_double;
|
|
|
|
fn bad(p: ^i32) -> void {
|
|
mem.destroy(p);
|
|
mem.destroy(p);
|
|
}
|