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