summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/incorrect_partial_ord_impl_on_ord_type_fully_qual.rs
blob: 3a3b84f93c4622340af396a62fd06c7ba485e457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// This test's filename is... a bit verbose. But it ensures we suggest the correct code when `Ord`
// is not in scope.
#![no_main]
#![no_implicit_prelude]

extern crate std;

use std::cmp::{self, Eq, Ordering, PartialEq, PartialOrd};
use std::option::Option::{self, Some};
use std::todo;

// lint

#[derive(Eq, PartialEq)]
struct A(u32);

impl cmp::Ord for A {
    fn cmp(&self, other: &Self) -> Ordering {
        todo!();
    }
}

impl PartialOrd for A {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        // NOTE: This suggestion is wrong, as `Ord` is not in scope. But this should be fine as it isn't
        // automatically applied
        todo!();
    }
}

#[derive(Eq, PartialEq)]
struct B(u32);

impl B {
    fn cmp(&self, other: &Self) -> Ordering {
        todo!();
    }
}

impl cmp::Ord for B {
    fn cmp(&self, other: &Self) -> Ordering {
        todo!();
    }
}

impl PartialOrd for B {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        // This calls `B.cmp`, not `Ord::cmp`!
        Some(self.cmp(other))
    }
}