72a3667eb3
will guarantee they have unit type.
7 lines
118 B
Rust
7 lines
118 B
Rust
// error-pattern:mismatched types: expected `()` but found `bool`
|
|
|
|
fn main() {
|
|
for i in [0] {
|
|
true
|
|
}
|
|
} |