Add an unwind test for failure during unique box construction

This commit is contained in:
Brian Anderson 2011-09-21 14:45:08 -07:00
parent 2cc01e2ca2
commit 92af552956

View file

@ -0,0 +1,18 @@
// error-pattern:fail
fn f() -> [int] { fail; }
// Voodoo. In unwind-alt we had to do this to trigger the bug. Might
// have been to do with memory allocation patterns.
fn prime() {
@0;
}
fn partial() {
let x = ~f();
}
fn main() {
prime();
partial();
}