]> git.lizzy.rs Git - rust.git/blob - src/test/ui/operator-recovery/less-than-greater-than.rs
Rollup merge of #99479 - Enselic:import-can-be-without-id, r=camelid
[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 }