-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for out-of-stack box leak #2555
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// NB: Not sure why this works. I expect the box argument to leak when | ||
// we run out of stack. Maybe the box annihilator works it out? | ||
|
||
// error-pattern:ran out of stack | ||
fn main() { | ||
eat(move @0); | ||
} | ||
|
||
fn eat( | ||
+a: @int | ||
) { | ||
eat(move a) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// xfail-test | ||
// error-pattern:ran out of stack | ||
fn main() { | ||
eat(move ~0); | ||
} | ||
|
||
fn eat( | ||
+a: ~int | ||
) { | ||
// Prevent this from being optimized to nothing | ||
eat(move a) | ||
} |