rust/src/test/run-fail/while-body-fails.rs

3 lines
87 B
Rust
Raw Normal View History

// error-pattern:quux
fn main() { let x: int = { while true { fail "quux"; } ; 8 } ; }