summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/should_impl_trait/method_list_1.rs
blob: 20d49f5a9763413100e898613f1f9554704d0325 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#![warn(clippy::all, clippy::pedantic)]
#![allow(
    clippy::missing_errors_doc,
    clippy::needless_pass_by_value,
    clippy::must_use_candidate,
    clippy::unused_self,
    clippy::needless_lifetimes,
    clippy::missing_safety_doc,
    clippy::wrong_self_convention,
    clippy::missing_panics_doc,
    clippy::return_self_not_must_use
)]

use std::ops::Mul;
use std::rc::{self, Rc};
use std::sync::{self, Arc};

fn main() {}
pub struct T;

impl T {
    // *****************************************
    // trait method list part 1, should lint all
    // *****************************************
    pub fn add(self, other: T) -> T {
        unimplemented!()
    }

    pub fn as_mut(&mut self) -> &mut T {
        unimplemented!()
    }

    pub fn as_ref(&self) -> &T {
        unimplemented!()
    }

    pub fn bitand(self, rhs: T) -> T {
        unimplemented!()
    }

    pub fn bitor(self, rhs: Self) -> Self {
        unimplemented!()
    }

    pub fn bitxor(self, rhs: Self) -> Self {
        unimplemented!()
    }

    pub fn borrow(&self) -> &str {
        unimplemented!()
    }

    pub fn borrow_mut(&mut self) -> &mut str {
        unimplemented!()
    }

    pub fn clone(&self) -> Self {
        unimplemented!()
    }

    pub fn cmp(&self, other: &Self) -> Self {
        unimplemented!()
    }

    pub fn default() -> Self {
        unimplemented!()
    }

    pub fn deref(&self) -> &Self {
        unimplemented!()
    }

    pub fn deref_mut(&mut self) -> &mut Self {
        unimplemented!()
    }

    pub fn div(self, rhs: Self) -> Self {
        unimplemented!()
    }

    pub fn drop(&mut self) {
        unimplemented!()
    }
    // **********
    // part 1 end
    // **********
}