7 lines
110 B
Rust
7 lines
110 B
Rust
// error-pattern:mismatched types: expected `()` but found `bool`
|
|
|
|
fn main() {
|
|
loop {
|
|
true
|
|
}
|
|
} |