]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/use_self.stderr
Auto merge of #82043 - tmiasko:may-have-side-effect, r=kennytm
[rust.git] / src / tools / clippy / tests / ui / use_self.stderr
1 error: unnecessary structure name repetition
2   --> $DIR/use_self.rs:18:21
3    |
4 LL |         fn new() -> Foo {
5    |                     ^^^ help: use the applicable keyword: `Self`
6    |
7    = note: `-D clippy::use-self` implied by `-D warnings`
8
9 error: unnecessary structure name repetition
10   --> $DIR/use_self.rs:19:13
11    |
12 LL |             Foo {}
13    |             ^^^ help: use the applicable keyword: `Self`
14
15 error: unnecessary structure name repetition
16   --> $DIR/use_self.rs:21:22
17    |
18 LL |         fn test() -> Foo {
19    |                      ^^^ help: use the applicable keyword: `Self`
20
21 error: unnecessary structure name repetition
22   --> $DIR/use_self.rs:22:13
23    |
24 LL |             Foo::new()
25    |             ^^^ help: use the applicable keyword: `Self`
26
27 error: unnecessary structure name repetition
28   --> $DIR/use_self.rs:27:25
29    |
30 LL |         fn default() -> Foo {
31    |                         ^^^ help: use the applicable keyword: `Self`
32
33 error: unnecessary structure name repetition
34   --> $DIR/use_self.rs:28:13
35    |
36 LL |             Foo::new()
37    |             ^^^ help: use the applicable keyword: `Self`
38
39 error: unnecessary structure name repetition
40   --> $DIR/use_self.rs:93:24
41    |
42 LL |         fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> {
43    |                        ^^^ help: use the applicable keyword: `Self`
44
45 error: unnecessary structure name repetition
46   --> $DIR/use_self.rs:93:55
47    |
48 LL |         fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> {
49    |                                                       ^^^ help: use the applicable keyword: `Self`
50
51 error: unnecessary structure name repetition
52   --> $DIR/use_self.rs:108:13
53    |
54 LL |             TS(0)
55    |             ^^ help: use the applicable keyword: `Self`
56
57 error: unnecessary structure name repetition
58   --> $DIR/use_self.rs:143:29
59    |
60 LL |                 fn bar() -> Bar {
61    |                             ^^^ help: use the applicable keyword: `Self`
62
63 error: unnecessary structure name repetition
64   --> $DIR/use_self.rs:144:21
65    |
66 LL |                     Bar { foo: Foo {} }
67    |                     ^^^ help: use the applicable keyword: `Self`
68
69 error: unnecessary structure name repetition
70   --> $DIR/use_self.rs:155:21
71    |
72 LL |         fn baz() -> Foo {
73    |                     ^^^ help: use the applicable keyword: `Self`
74
75 error: unnecessary structure name repetition
76   --> $DIR/use_self.rs:156:13
77    |
78 LL |             Foo {}
79    |             ^^^ help: use the applicable keyword: `Self`
80
81 error: unnecessary structure name repetition
82   --> $DIR/use_self.rs:173:21
83    |
84 LL |             let _ = Enum::B(42);
85    |                     ^^^^ help: use the applicable keyword: `Self`
86
87 error: unnecessary structure name repetition
88   --> $DIR/use_self.rs:174:21
89    |
90 LL |             let _ = Enum::C { field: true };
91    |                     ^^^^ help: use the applicable keyword: `Self`
92
93 error: unnecessary structure name repetition
94   --> $DIR/use_self.rs:175:21
95    |
96 LL |             let _ = Enum::A;
97    |                     ^^^^ help: use the applicable keyword: `Self`
98
99 error: unnecessary structure name repetition
100   --> $DIR/use_self.rs:217:13
101    |
102 LL |             nested::A::fun_1();
103    |             ^^^^^^^^^ help: use the applicable keyword: `Self`
104
105 error: unnecessary structure name repetition
106   --> $DIR/use_self.rs:218:13
107    |
108 LL |             nested::A::A;
109    |             ^^^^^^^^^ help: use the applicable keyword: `Self`
110
111 error: unnecessary structure name repetition
112   --> $DIR/use_self.rs:220:13
113    |
114 LL |             nested::A {};
115    |             ^^^^^^^^^ help: use the applicable keyword: `Self`
116
117 error: unnecessary structure name repetition
118   --> $DIR/use_self.rs:239:13
119    |
120 LL |             TestStruct::from_something()
121    |             ^^^^^^^^^^ help: use the applicable keyword: `Self`
122
123 error: unnecessary structure name repetition
124   --> $DIR/use_self.rs:253:25
125    |
126 LL |         async fn g() -> S {
127    |                         ^ help: use the applicable keyword: `Self`
128
129 error: unnecessary structure name repetition
130   --> $DIR/use_self.rs:254:13
131    |
132 LL |             S {}
133    |             ^ help: use the applicable keyword: `Self`
134
135 error: unnecessary structure name repetition
136   --> $DIR/use_self.rs:258:16
137    |
138 LL |             &p[S::A..S::B]
139    |                ^ help: use the applicable keyword: `Self`
140
141 error: unnecessary structure name repetition
142   --> $DIR/use_self.rs:258:22
143    |
144 LL |             &p[S::A..S::B]
145    |                      ^ help: use the applicable keyword: `Self`
146
147 error: unnecessary structure name repetition
148   --> $DIR/use_self.rs:281:29
149    |
150 LL |         fn foo(value: T) -> Foo<T> {
151    |                             ^^^^^^ help: use the applicable keyword: `Self`
152
153 error: unnecessary structure name repetition
154   --> $DIR/use_self.rs:282:13
155    |
156 LL |             Foo { value }
157    |             ^^^ help: use the applicable keyword: `Self`
158
159 error: unnecessary structure name repetition
160   --> $DIR/use_self.rs:319:21
161    |
162 LL |         type From = T::From;
163    |                     ^^^^^^^ help: use the applicable keyword: `Self`
164
165 error: unnecessary structure name repetition
166   --> $DIR/use_self.rs:320:19
167    |
168 LL |         type To = T::To;
169    |                   ^^^^^ help: use the applicable keyword: `Self`
170
171 error: unnecessary structure name repetition
172   --> $DIR/use_self.rs:457:13
173    |
174 LL |             A::new::<submod::B>(submod::B {})
175    |             ^ help: use the applicable keyword: `Self`
176
177 error: aborting due to 29 previous errors
178