10 lines
140 B
Plaintext
10 lines
140 B
Plaintext
// ERROR:8:move
|
|
unit badloop;
|
|
|
|
fn bad(p: ^i32, again: bool) -> void {
|
|
while again {
|
|
mem.destroy(p);
|
|
}
|
|
mem.destroy(p);
|
|
}
|