Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
suggestions
/
js-style-comparison-op.rs
blob: 621571aa40e533e0979b71a21383105b0281e4e5 [
file
] [
log
] [
blame
]
//@ run-rustfix
fn
main
()
{
if
1
===
1
{
//~ ERROR invalid comparison operator `===`
println
!(
"yup!"
);
}
else
if
1
!==
1
{
//~ ERROR invalid comparison operator `!==`
println
!(
"nope!"
);
}
}