]> git.lizzy.rs Git - rust.git/blob - src/test/ui/operator-recovery/less-than-greater-than.rs
Rollup merge of #105843 - compiler-errors:sugg-const, r=lcnr
[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 }