]> git.lizzy.rs Git - rust.git/blob - src/test/ui/operator-recovery/less-than-greater-than.rs
Rollup merge of #98640 - cuviper:stable-rust-analyzer, r=Mark-Simulacrum
[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 }