1
Fork 0
rust/tests/ui/block-result/block-must-not-have-result-do.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
72 B
Rust
Raw Normal View History

fn main() {
loop {
2015-01-12 01:01:44 -05:00
true //~ ERROR mismatched types
}
}