summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/new_without_default.stderr
blob: 212a69ab94e6506d0aace70d6dee93b26aa205a3 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
error: you should consider adding a `Default` implementation for `Foo`
  --> $DIR/new_without_default.rs:7:5
   |
LL | /     pub fn new() -> Foo {
LL | |         Foo
LL | |     }
   | |_____^
   |
   = note: `-D clippy::new-without-default` implied by `-D warnings`
help: try adding this
   |
LL + impl Default for Foo {
LL +     fn default() -> Self {
LL +         Self::new()
LL +     }
LL + }
   |

error: you should consider adding a `Default` implementation for `Bar`
  --> $DIR/new_without_default.rs:15:5
   |
LL | /     pub fn new() -> Self {
LL | |         Bar
LL | |     }
   | |_____^
   |
help: try adding this
   |
LL + impl Default for Bar {
LL +     fn default() -> Self {
LL +         Self::new()
LL +     }
LL + }
   |

error: you should consider adding a `Default` implementation for `LtKo<'c>`
  --> $DIR/new_without_default.rs:79:5
   |
LL | /     pub fn new() -> LtKo<'c> {
LL | |         unimplemented!()
LL | |     }
   | |_____^
   |
help: try adding this
   |
LL + impl<'c> Default for LtKo<'c> {
LL +     fn default() -> Self {
LL +         Self::new()
LL +     }
LL + }
   |

error: you should consider adding a `Default` implementation for `NewNotEqualToDerive`
  --> $DIR/new_without_default.rs:172:5
   |
LL | /     pub fn new() -> Self {
LL | |         NewNotEqualToDerive { foo: 1 }
LL | |     }
   | |_____^
   |
help: try adding this
   |
LL + impl Default for NewNotEqualToDerive {
LL +     fn default() -> Self {
LL +         Self::new()
LL +     }
LL + }
   |

error: you should consider adding a `Default` implementation for `FooGenerics<T>`
  --> $DIR/new_without_default.rs:180:5
   |
LL | /     pub fn new() -> Self {
LL | |         Self(Default::default())
LL | |     }
   | |_____^
   |
help: try adding this
   |
LL + impl<T> Default for FooGenerics<T> {
LL +     fn default() -> Self {
LL +         Self::new()
LL +     }
LL + }
   |

error: you should consider adding a `Default` implementation for `BarGenerics<T>`
  --> $DIR/new_without_default.rs:187:5
   |
LL | /     pub fn new() -> Self {
LL | |         Self(Default::default())
LL | |     }
   | |_____^
   |
help: try adding this
   |
LL + impl<T: Copy> Default for BarGenerics<T> {
LL +     fn default() -> Self {
LL +         Self::new()
LL +     }
LL + }
   |

error: you should consider adding a `Default` implementation for `Foo<T>`
  --> $DIR/new_without_default.rs:198:9
   |
LL | /         pub fn new() -> Self {
LL | |             todo!()
LL | |         }
   | |_________^
   |
help: try adding this
   |
LL ~     impl<T> Default for Foo<T> {
LL +         fn default() -> Self {
LL +             Self::new()
LL +         }
LL +     }
LL + 
LL ~     impl<T> Foo<T> {
   |

error: aborting due to 7 previous errors