blob: 621571aa40e533e0979b71a21383105b0281e4e5 [file] [log] [blame] [edit]
//@ run-rustfix
fn main() {
if 1 === 1 { //~ ERROR invalid comparison operator `===`
println!("yup!");
} else if 1 !== 1 { //~ ERROR invalid comparison operator `!==`
println!("nope!");
}
}