rust/tests/ui/suggestions/js-style-comparison-op.fixed

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

9 lines
216 B
Rust
Raw Normal View History

//@ run-rustfix
fn main() {
if 1 == 1 { //~ ERROR invalid comparison operator `===`
println!("yup!");
} else if 1 != 1 { //~ ERROR invalid comparison operator `!==`
println!("nope!");
}
}