rust/src/test/compile-fail/unreachable-code.rs

6 lines
145 B
Rust
Raw Normal View History

// error-pattern:unreachable statement
fn main() {
loop{}
// red herring to make sure compilation fails
log(error, 42 == 'c');
}