rust/src/test/run-fail/unwind-resource-fail3.rs

12 lines
185 B
Rust
Raw Normal View History

2011-09-20 20:00:34 -07:00
// 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);
}