rust/src/test/run-fail/unwind-resource-fail3.rs
2011-09-20 20:00:34 -07:00

12 lines
185 B
Rust

// error-pattern:quux
// xfail-test
resource faily_box(_i: @int) {
// What happens to the box pointer owned by this resource?
fail "quux";
}
fn main() {
faily_box(@10);
}