]> git.lizzy.rs Git - rust.git/blob - tests/ui/operator-recovery/spaceship.rs
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / operator-recovery / spaceship.rs
1 fn main() {
2     println!("{}", 1 <=> 2);
3     //~^ERROR invalid comparison operator `<=>`
4 }