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

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

9 lines
217 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!");
}
}