]> git.lizzy.rs Git - rust.git/blob - src/test/ui/operator-recovery/less-than-greater-than.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / operator-recovery / less-than-greater-than.rs
1 fn main() {
2     println!("{}", 1 <> 2);
3     //~^ERROR invalid comparison operator `<>`
4 }