mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
Re-added test for Issue 935 -- not sure what happened to it
This commit is contained in:
parent
1dd8acd56a
commit
c8ea9fc4c3
31
src/test/run-pass/unreachable-code.rs
Normal file
31
src/test/run-pass/unreachable-code.rs
Normal file
@ -0,0 +1,31 @@
|
||||
// xfail-pretty
|
||||
|
||||
fn id(x: bool) -> bool { x }
|
||||
|
||||
fn call_id() {
|
||||
let c <- fail;
|
||||
id(c);
|
||||
}
|
||||
|
||||
fn call_id_2() { id(true) && id(ret); }
|
||||
|
||||
fn call_id_3() { id(ret) && id(ret); }
|
||||
|
||||
fn log_fail() { log(error, fail); }
|
||||
|
||||
fn log_ret() { log(error, ret); }
|
||||
|
||||
fn log_break() { loop { log(error, break); } }
|
||||
|
||||
fn log_again() { loop { log(error, again); } }
|
||||
|
||||
fn ret_ret() -> int { ret (ret 2) + 3; }
|
||||
|
||||
fn ret_guard() {
|
||||
alt 2 {
|
||||
x if (ret) { x; }
|
||||
_ {}
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Reference in New Issue
Block a user