rust/src/test/run-fail/unwind-tup2.rs

14 lines
172 B
Rust

// error-pattern:fail
fn fold_local() -> @[int]{
@[0,0,0,0,0,0]
}
fn fold_remote() -> @[int]{
fail;
}
fn main() {
let lss = (fold_local(), fold_remote());
}