diff options
Diffstat (limited to 'crates/hir_ty/src/tests')
-rw-r--r-- | crates/hir_ty/src/tests/coercion.rs | 673 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/display_source_code.rs | 10 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/macros.rs | 29 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/method_resolution.rs | 264 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/patterns.rs | 4 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/regression.rs | 11 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/simple.rs | 18 | ||||
-rw-r--r-- | crates/hir_ty/src/tests/traits.rs | 244 |
8 files changed, 360 insertions, 893 deletions
diff --git a/crates/hir_ty/src/tests/coercion.rs b/crates/hir_ty/src/tests/coercion.rs index 713b74165..87089f09d 100644 --- a/crates/hir_ty/src/tests/coercion.rs +++ b/crates/hir_ty/src/tests/coercion.rs | |||
@@ -1,27 +1,22 @@ | |||
1 | use expect_test::expect; | 1 | use super::{check, check_no_mismatches, check_types}; |
2 | |||
3 | use super::{check_infer, check_infer_with_mismatches, check_no_mismatches, check_types}; | ||
4 | 2 | ||
5 | #[test] | 3 | #[test] |
6 | fn infer_block_expr_type_mismatch() { | 4 | fn block_expr_type_mismatch() { |
7 | check_infer( | 5 | // FIXME fix double type mismatch |
6 | check( | ||
8 | r" | 7 | r" |
9 | fn test() { | 8 | fn test() { |
10 | let a: i32 = { 1i64 }; | 9 | let a: i32 = { 1i64 }; |
11 | } | 10 | // ^^^^^^^^ expected i32, got i64 |
11 | // ^^^^ expected i32, got i64 | ||
12 | } | ||
12 | ", | 13 | ", |
13 | expect![[r" | ||
14 | 10..40 '{ ...4 }; }': () | ||
15 | 20..21 'a': i32 | ||
16 | 29..37 '{ 1i64 }': i64 | ||
17 | 31..35 '1i64': i64 | ||
18 | "]], | ||
19 | ); | 14 | ); |
20 | } | 15 | } |
21 | 16 | ||
22 | #[test] | 17 | #[test] |
23 | fn coerce_places() { | 18 | fn coerce_places() { |
24 | check_infer( | 19 | check_no_mismatches( |
25 | r#" | 20 | r#" |
26 | //- minicore: coerce_unsized | 21 | //- minicore: coerce_unsized |
27 | struct S<T> { a: T } | 22 | struct S<T> { a: T } |
@@ -46,81 +41,25 @@ fn test2() { | |||
46 | let g: (&[_], &[_]) = (arr, arr); | 41 | let g: (&[_], &[_]) = (arr, arr); |
47 | } | 42 | } |
48 | "#, | 43 | "#, |
49 | expect![[r#" | ||
50 | 30..31 '_': &[T] | ||
51 | 44..55 '{ loop {} }': T | ||
52 | 46..53 'loop {}': ! | ||
53 | 51..53 '{}': () | ||
54 | 64..65 '_': S<&[T]> | ||
55 | 81..92 '{ loop {} }': T | ||
56 | 83..90 'loop {}': ! | ||
57 | 88..90 '{}': () | ||
58 | 121..132 '{ loop {} }': *mut [T; 2] | ||
59 | 123..130 'loop {}': ! | ||
60 | 128..130 '{}': () | ||
61 | 159..172 '{ gen() }': *mut [U] | ||
62 | 165..168 'gen': fn gen<U>() -> *mut [U; 2] | ||
63 | 165..170 'gen()': *mut [U; 2] | ||
64 | 185..419 '{ ...rr); }': () | ||
65 | 195..198 'arr': &[u8; 1] | ||
66 | 211..215 '&[1]': &[u8; 1] | ||
67 | 212..215 '[1]': [u8; 1] | ||
68 | 213..214 '1': u8 | ||
69 | 226..227 'a': &[u8] | ||
70 | 236..239 'arr': &[u8; 1] | ||
71 | 249..250 'b': u8 | ||
72 | 253..254 'f': fn f<u8>(&[u8]) -> u8 | ||
73 | 253..259 'f(arr)': u8 | ||
74 | 255..258 'arr': &[u8; 1] | ||
75 | 269..270 'c': &[u8] | ||
76 | 279..286 '{ arr }': &[u8] | ||
77 | 281..284 'arr': &[u8; 1] | ||
78 | 296..297 'd': u8 | ||
79 | 300..301 'g': fn g<u8>(S<&[u8]>) -> u8 | ||
80 | 300..315 'g(S { a: arr })': u8 | ||
81 | 302..314 'S { a: arr }': S<&[u8]> | ||
82 | 309..312 'arr': &[u8; 1] | ||
83 | 325..326 'e': [&[u8]; 1] | ||
84 | 340..345 '[arr]': [&[u8]; 1] | ||
85 | 341..344 'arr': &[u8; 1] | ||
86 | 355..356 'f': [&[u8]; 2] | ||
87 | 370..378 '[arr; 2]': [&[u8]; 2] | ||
88 | 371..374 'arr': &[u8; 1] | ||
89 | 376..377 '2': usize | ||
90 | 388..389 'g': (&[u8], &[u8]) | ||
91 | 406..416 '(arr, arr)': (&[u8], &[u8]) | ||
92 | 407..410 'arr': &[u8; 1] | ||
93 | 412..415 'arr': &[u8; 1] | ||
94 | "#]], | ||
95 | ); | 44 | ); |
96 | } | 45 | } |
97 | 46 | ||
98 | #[test] | 47 | #[test] |
99 | fn infer_let_stmt_coerce() { | 48 | fn let_stmt_coerce() { |
100 | check_infer( | 49 | check_no_mismatches( |
101 | r" | 50 | r" |
102 | fn test() { | 51 | //- minicore: coerce_unsized |
103 | let x: &[isize] = &[1]; | 52 | fn test() { |
104 | let x: *const [isize] = &[1]; | 53 | let x: &[isize] = &[1]; |
105 | } | 54 | let x: *const [isize] = &[1]; |
106 | ", | 55 | } |
107 | expect![[r#" | 56 | ", |
108 | 10..75 '{ ...[1]; }': () | ||
109 | 20..21 'x': &[isize] | ||
110 | 34..38 '&[1]': &[isize; 1] | ||
111 | 35..38 '[1]': [isize; 1] | ||
112 | 36..37 '1': isize | ||
113 | 48..49 'x': *const [isize] | ||
114 | 68..72 '&[1]': &[isize; 1] | ||
115 | 69..72 '[1]': [isize; 1] | ||
116 | 70..71 '1': isize | ||
117 | "#]], | ||
118 | ); | 57 | ); |
119 | } | 58 | } |
120 | 59 | ||
121 | #[test] | 60 | #[test] |
122 | fn infer_custom_coerce_unsized() { | 61 | fn custom_coerce_unsized() { |
123 | check_infer( | 62 | check( |
124 | r#" | 63 | r#" |
125 | //- minicore: coerce_unsized | 64 | //- minicore: coerce_unsized |
126 | use core::{marker::Unsize, ops::CoerceUnsized}; | 65 | use core::{marker::Unsize, ops::CoerceUnsized}; |
@@ -138,46 +77,22 @@ fn foo3<T>(x: C<[T]>) -> C<[T]> { x } | |||
138 | 77 | ||
139 | fn test(a: A<[u8; 2]>, b: B<[u8; 2]>, c: C<[u8; 2]>) { | 78 | fn test(a: A<[u8; 2]>, b: B<[u8; 2]>, c: C<[u8; 2]>) { |
140 | let d = foo1(a); | 79 | let d = foo1(a); |
80 | // ^ expected A<[{unknown}]>, got A<[u8; 2]> | ||
141 | let e = foo2(b); | 81 | let e = foo2(b); |
82 | // ^ type: B<[u8]> | ||
142 | let f = foo3(c); | 83 | let f = foo3(c); |
84 | // ^ type: C<[u8]> | ||
143 | } | 85 | } |
144 | "#, | 86 | "#, |
145 | expect![[r#" | ||
146 | 306..307 'x': A<[T]> | ||
147 | 327..332 '{ x }': A<[T]> | ||
148 | 329..330 'x': A<[T]> | ||
149 | 344..345 'x': B<[T]> | ||
150 | 365..370 '{ x }': B<[T]> | ||
151 | 367..368 'x': B<[T]> | ||
152 | 382..383 'x': C<[T]> | ||
153 | 403..408 '{ x }': C<[T]> | ||
154 | 405..406 'x': C<[T]> | ||
155 | 418..419 'a': A<[u8; 2]> | ||
156 | 433..434 'b': B<[u8; 2]> | ||
157 | 448..449 'c': C<[u8; 2]> | ||
158 | 463..529 '{ ...(c); }': () | ||
159 | 473..474 'd': A<[{unknown}]> | ||
160 | 477..481 'foo1': fn foo1<{unknown}>(A<[{unknown}]>) -> A<[{unknown}]> | ||
161 | 477..484 'foo1(a)': A<[{unknown}]> | ||
162 | 482..483 'a': A<[u8; 2]> | ||
163 | 494..495 'e': B<[u8]> | ||
164 | 498..502 'foo2': fn foo2<u8>(B<[u8]>) -> B<[u8]> | ||
165 | 498..505 'foo2(b)': B<[u8]> | ||
166 | 503..504 'b': B<[u8; 2]> | ||
167 | 515..516 'f': C<[u8]> | ||
168 | 519..523 'foo3': fn foo3<u8>(C<[u8]>) -> C<[u8]> | ||
169 | 519..526 'foo3(c)': C<[u8]> | ||
170 | 524..525 'c': C<[u8; 2]> | ||
171 | "#]], | ||
172 | ); | 87 | ); |
173 | } | 88 | } |
174 | 89 | ||
175 | #[test] | 90 | #[test] |
176 | fn infer_if_coerce() { | 91 | fn if_coerce() { |
177 | check_infer( | 92 | check_no_mismatches( |
178 | r#" | 93 | r#" |
179 | //- minicore: unsize | 94 | //- minicore: coerce_unsized |
180 | fn foo<T>(x: &[T]) -> &[T] { loop {} } | 95 | fn foo<T>(x: &[T]) -> &[T] { x } |
181 | fn test() { | 96 | fn test() { |
182 | let x = if true { | 97 | let x = if true { |
183 | foo(&[1]) | 98 | foo(&[1]) |
@@ -186,35 +101,15 @@ fn test() { | |||
186 | }; | 101 | }; |
187 | } | 102 | } |
188 | "#, | 103 | "#, |
189 | expect![[r#" | ||
190 | 10..11 'x': &[T] | ||
191 | 27..38 '{ loop {} }': &[T] | ||
192 | 29..36 'loop {}': ! | ||
193 | 34..36 '{}': () | ||
194 | 49..125 '{ ... }; }': () | ||
195 | 59..60 'x': &[i32] | ||
196 | 63..122 'if tru... }': &[i32] | ||
197 | 66..70 'true': bool | ||
198 | 71..96 '{ ... }': &[i32] | ||
199 | 81..84 'foo': fn foo<i32>(&[i32]) -> &[i32] | ||
200 | 81..90 'foo(&[1])': &[i32] | ||
201 | 85..89 '&[1]': &[i32; 1] | ||
202 | 86..89 '[1]': [i32; 1] | ||
203 | 87..88 '1': i32 | ||
204 | 102..122 '{ ... }': &[i32; 1] | ||
205 | 112..116 '&[1]': &[i32; 1] | ||
206 | 113..116 '[1]': [i32; 1] | ||
207 | 114..115 '1': i32 | ||
208 | "#]], | ||
209 | ); | 104 | ); |
210 | } | 105 | } |
211 | 106 | ||
212 | #[test] | 107 | #[test] |
213 | fn infer_if_else_coerce() { | 108 | fn if_else_coerce() { |
214 | check_infer( | 109 | check_no_mismatches( |
215 | r#" | 110 | r#" |
216 | //- minicore: coerce_unsized | 111 | //- minicore: coerce_unsized |
217 | fn foo<T>(x: &[T]) -> &[T] { loop {} } | 112 | fn foo<T>(x: &[T]) -> &[T] { x } |
218 | fn test() { | 113 | fn test() { |
219 | let x = if true { | 114 | let x = if true { |
220 | &[1] | 115 | &[1] |
@@ -223,35 +118,15 @@ fn test() { | |||
223 | }; | 118 | }; |
224 | } | 119 | } |
225 | "#, | 120 | "#, |
226 | expect![[r#" | ||
227 | 10..11 'x': &[T] | ||
228 | 27..38 '{ loop {} }': &[T] | ||
229 | 29..36 'loop {}': ! | ||
230 | 34..36 '{}': () | ||
231 | 49..125 '{ ... }; }': () | ||
232 | 59..60 'x': &[i32] | ||
233 | 63..122 'if tru... }': &[i32] | ||
234 | 66..70 'true': bool | ||
235 | 71..91 '{ ... }': &[i32; 1] | ||
236 | 81..85 '&[1]': &[i32; 1] | ||
237 | 82..85 '[1]': [i32; 1] | ||
238 | 83..84 '1': i32 | ||
239 | 97..122 '{ ... }': &[i32] | ||
240 | 107..110 'foo': fn foo<i32>(&[i32]) -> &[i32] | ||
241 | 107..116 'foo(&[1])': &[i32] | ||
242 | 111..115 '&[1]': &[i32; 1] | ||
243 | 112..115 '[1]': [i32; 1] | ||
244 | 113..114 '1': i32 | ||
245 | "#]], | ||
246 | ) | 121 | ) |
247 | } | 122 | } |
248 | 123 | ||
249 | #[test] | 124 | #[test] |
250 | fn infer_match_first_coerce() { | 125 | fn match_first_coerce() { |
251 | check_infer( | 126 | check_no_mismatches( |
252 | r#" | 127 | r#" |
253 | //- minicore: unsize | 128 | //- minicore: coerce_unsized |
254 | fn foo<T>(x: &[T]) -> &[T] { loop {} } | 129 | fn foo<T>(x: &[T]) -> &[T] { x } |
255 | fn test(i: i32) { | 130 | fn test(i: i32) { |
256 | let x = match i { | 131 | let x = match i { |
257 | 2 => foo(&[2]), | 132 | 2 => foo(&[2]), |
@@ -260,39 +135,12 @@ fn test(i: i32) { | |||
260 | }; | 135 | }; |
261 | } | 136 | } |
262 | "#, | 137 | "#, |
263 | expect![[r#" | ||
264 | 10..11 'x': &[T] | ||
265 | 27..38 '{ loop {} }': &[T] | ||
266 | 29..36 'loop {}': ! | ||
267 | 34..36 '{}': () | ||
268 | 47..48 'i': i32 | ||
269 | 55..149 '{ ... }; }': () | ||
270 | 65..66 'x': &[i32] | ||
271 | 69..146 'match ... }': &[i32] | ||
272 | 75..76 'i': i32 | ||
273 | 87..88 '2': i32 | ||
274 | 87..88 '2': i32 | ||
275 | 92..95 'foo': fn foo<i32>(&[i32]) -> &[i32] | ||
276 | 92..101 'foo(&[2])': &[i32] | ||
277 | 96..100 '&[2]': &[i32; 1] | ||
278 | 97..100 '[2]': [i32; 1] | ||
279 | 98..99 '2': i32 | ||
280 | 111..112 '1': i32 | ||
281 | 111..112 '1': i32 | ||
282 | 116..120 '&[1]': &[i32; 1] | ||
283 | 117..120 '[1]': [i32; 1] | ||
284 | 118..119 '1': i32 | ||
285 | 130..131 '_': i32 | ||
286 | 135..139 '&[3]': &[i32; 1] | ||
287 | 136..139 '[3]': [i32; 1] | ||
288 | 137..138 '3': i32 | ||
289 | "#]], | ||
290 | ); | 138 | ); |
291 | } | 139 | } |
292 | 140 | ||
293 | #[test] | 141 | #[test] |
294 | fn infer_match_second_coerce() { | 142 | fn match_second_coerce() { |
295 | check_infer( | 143 | check_no_mismatches( |
296 | r#" | 144 | r#" |
297 | //- minicore: coerce_unsized | 145 | //- minicore: coerce_unsized |
298 | fn foo<T>(x: &[T]) -> &[T] { loop {} } | 146 | fn foo<T>(x: &[T]) -> &[T] { loop {} } |
@@ -304,33 +152,6 @@ fn test(i: i32) { | |||
304 | }; | 152 | }; |
305 | } | 153 | } |
306 | "#, | 154 | "#, |
307 | expect![[r#" | ||
308 | 10..11 'x': &[T] | ||
309 | 27..38 '{ loop {} }': &[T] | ||
310 | 29..36 'loop {}': ! | ||
311 | 34..36 '{}': () | ||
312 | 47..48 'i': i32 | ||
313 | 55..149 '{ ... }; }': () | ||
314 | 65..66 'x': &[i32] | ||
315 | 69..146 'match ... }': &[i32] | ||
316 | 75..76 'i': i32 | ||
317 | 87..88 '1': i32 | ||
318 | 87..88 '1': i32 | ||
319 | 92..96 '&[1]': &[i32; 1] | ||
320 | 93..96 '[1]': [i32; 1] | ||
321 | 94..95 '1': i32 | ||
322 | 106..107 '2': i32 | ||
323 | 106..107 '2': i32 | ||
324 | 111..114 'foo': fn foo<i32>(&[i32]) -> &[i32] | ||
325 | 111..120 'foo(&[2])': &[i32] | ||
326 | 115..119 '&[2]': &[i32; 1] | ||
327 | 116..119 '[2]': [i32; 1] | ||
328 | 117..118 '2': i32 | ||
329 | 130..131 '_': i32 | ||
330 | 135..139 '&[3]': &[i32; 1] | ||
331 | 136..139 '[3]': [i32; 1] | ||
332 | 137..138 '3': i32 | ||
333 | "#]], | ||
334 | ); | 155 | ); |
335 | } | 156 | } |
336 | 157 | ||
@@ -338,94 +159,52 @@ fn test(i: i32) { | |||
338 | fn coerce_merge_one_by_one1() { | 159 | fn coerce_merge_one_by_one1() { |
339 | cov_mark::check!(coerce_merge_fail_fallback); | 160 | cov_mark::check!(coerce_merge_fail_fallback); |
340 | 161 | ||
341 | check_infer( | 162 | check( |
342 | r" | 163 | r" |
343 | fn test() { | 164 | fn test() { |
344 | let t = &mut 1; | 165 | let t = &mut 1; |
345 | let x = match 1 { | 166 | let x = match 1 { |
346 | 1 => t as *mut i32, | 167 | 1 => t as *mut i32, |
347 | 2 => t as &i32, | 168 | 2 => t as &i32, |
348 | _ => t as *const i32, | 169 | //^^^^^^^^^ expected *mut i32, got &i32 |
349 | }; | 170 | _ => t as *const i32, |
350 | } | 171 | }; |
172 | x; | ||
173 | //^ type: *const i32 | ||
174 | } | ||
351 | ", | 175 | ", |
352 | expect![[r" | ||
353 | 10..144 '{ ... }; }': () | ||
354 | 20..21 't': &mut i32 | ||
355 | 24..30 '&mut 1': &mut i32 | ||
356 | 29..30 '1': i32 | ||
357 | 40..41 'x': *const i32 | ||
358 | 44..141 'match ... }': *const i32 | ||
359 | 50..51 '1': i32 | ||
360 | 62..63 '1': i32 | ||
361 | 62..63 '1': i32 | ||
362 | 67..68 't': &mut i32 | ||
363 | 67..80 't as *mut i32': *mut i32 | ||
364 | 90..91 '2': i32 | ||
365 | 90..91 '2': i32 | ||
366 | 95..96 't': &mut i32 | ||
367 | 95..104 't as &i32': &i32 | ||
368 | 114..115 '_': i32 | ||
369 | 119..120 't': &mut i32 | ||
370 | 119..134 't as *const i32': *const i32 | ||
371 | "]], | ||
372 | ); | 176 | ); |
373 | } | 177 | } |
374 | 178 | ||
375 | #[test] | 179 | #[test] |
376 | fn return_coerce_unknown() { | 180 | fn return_coerce_unknown() { |
377 | check_infer_with_mismatches( | 181 | check_types( |
378 | r" | 182 | r" |
379 | fn foo() -> u32 { | 183 | fn foo() -> u32 { |
380 | return unknown; | 184 | return unknown; |
381 | } | 185 | //^^^^^^^ u32 |
186 | } | ||
382 | ", | 187 | ", |
383 | expect![[r" | ||
384 | 16..39 '{ ...own; }': u32 | ||
385 | 22..36 'return unknown': ! | ||
386 | 29..36 'unknown': u32 | ||
387 | "]], | ||
388 | ); | 188 | ); |
389 | } | 189 | } |
390 | 190 | ||
391 | #[test] | 191 | #[test] |
392 | fn coerce_autoderef() { | 192 | fn coerce_autoderef() { |
393 | check_infer_with_mismatches( | 193 | check_no_mismatches( |
394 | r" | 194 | r" |
395 | struct Foo; | 195 | struct Foo; |
396 | fn takes_ref_foo(x: &Foo) {} | 196 | fn takes_ref_foo(x: &Foo) {} |
397 | fn test() { | 197 | fn test() { |
398 | takes_ref_foo(&Foo); | 198 | takes_ref_foo(&Foo); |
399 | takes_ref_foo(&&Foo); | 199 | takes_ref_foo(&&Foo); |
400 | takes_ref_foo(&&&Foo); | 200 | takes_ref_foo(&&&Foo); |
401 | } | 201 | }", |
402 | ", | ||
403 | expect![[r" | ||
404 | 29..30 'x': &Foo | ||
405 | 38..40 '{}': () | ||
406 | 51..132 '{ ...oo); }': () | ||
407 | 57..70 'takes_ref_foo': fn takes_ref_foo(&Foo) | ||
408 | 57..76 'takes_...(&Foo)': () | ||
409 | 71..75 '&Foo': &Foo | ||
410 | 72..75 'Foo': Foo | ||
411 | 82..95 'takes_ref_foo': fn takes_ref_foo(&Foo) | ||
412 | 82..102 'takes_...&&Foo)': () | ||
413 | 96..101 '&&Foo': &&Foo | ||
414 | 97..101 '&Foo': &Foo | ||
415 | 98..101 'Foo': Foo | ||
416 | 108..121 'takes_ref_foo': fn takes_ref_foo(&Foo) | ||
417 | 108..129 'takes_...&&Foo)': () | ||
418 | 122..128 '&&&Foo': &&&Foo | ||
419 | 123..128 '&&Foo': &&Foo | ||
420 | 124..128 '&Foo': &Foo | ||
421 | 125..128 'Foo': Foo | ||
422 | "]], | ||
423 | ); | 202 | ); |
424 | } | 203 | } |
425 | 204 | ||
426 | #[test] | 205 | #[test] |
427 | fn coerce_autoderef_generic() { | 206 | fn coerce_autoderef_generic() { |
428 | check_infer_with_mismatches( | 207 | check_no_mismatches( |
429 | r#" | 208 | r#" |
430 | struct Foo; | 209 | struct Foo; |
431 | fn takes_ref<T>(x: &T) -> T { *x } | 210 | fn takes_ref<T>(x: &T) -> T { *x } |
@@ -435,34 +214,12 @@ fn test() { | |||
435 | takes_ref(&&&Foo); | 214 | takes_ref(&&&Foo); |
436 | } | 215 | } |
437 | "#, | 216 | "#, |
438 | expect![[r" | ||
439 | 28..29 'x': &T | ||
440 | 40..46 '{ *x }': T | ||
441 | 42..44 '*x': T | ||
442 | 43..44 'x': &T | ||
443 | 57..126 '{ ...oo); }': () | ||
444 | 63..72 'takes_ref': fn takes_ref<Foo>(&Foo) -> Foo | ||
445 | 63..78 'takes_ref(&Foo)': Foo | ||
446 | 73..77 '&Foo': &Foo | ||
447 | 74..77 'Foo': Foo | ||
448 | 84..93 'takes_ref': fn takes_ref<&Foo>(&&Foo) -> &Foo | ||
449 | 84..100 'takes_...&&Foo)': &Foo | ||
450 | 94..99 '&&Foo': &&Foo | ||
451 | 95..99 '&Foo': &Foo | ||
452 | 96..99 'Foo': Foo | ||
453 | 106..115 'takes_ref': fn takes_ref<&&Foo>(&&&Foo) -> &&Foo | ||
454 | 106..123 'takes_...&&Foo)': &&Foo | ||
455 | 116..122 '&&&Foo': &&&Foo | ||
456 | 117..122 '&&Foo': &&Foo | ||
457 | 118..122 '&Foo': &Foo | ||
458 | 119..122 'Foo': Foo | ||
459 | "]], | ||
460 | ); | 217 | ); |
461 | } | 218 | } |
462 | 219 | ||
463 | #[test] | 220 | #[test] |
464 | fn coerce_autoderef_block() { | 221 | fn coerce_autoderef_block() { |
465 | check_infer_with_mismatches( | 222 | check_no_mismatches( |
466 | r#" | 223 | r#" |
467 | //- minicore: deref | 224 | //- minicore: deref |
468 | struct String {} | 225 | struct String {} |
@@ -473,71 +230,32 @@ fn test() { | |||
473 | takes_ref_str(&{ returns_string() }); | 230 | takes_ref_str(&{ returns_string() }); |
474 | } | 231 | } |
475 | "#, | 232 | "#, |
476 | expect![[r#" | ||
477 | 90..91 'x': &str | ||
478 | 99..101 '{}': () | ||
479 | 132..143 '{ loop {} }': String | ||
480 | 134..141 'loop {}': ! | ||
481 | 139..141 '{}': () | ||
482 | 154..199 '{ ... }); }': () | ||
483 | 160..173 'takes_ref_str': fn takes_ref_str(&str) | ||
484 | 160..196 'takes_...g() })': () | ||
485 | 174..195 '&{ ret...ng() }': &String | ||
486 | 175..195 '{ retu...ng() }': String | ||
487 | 177..191 'returns_string': fn returns_string() -> String | ||
488 | 177..193 'return...ring()': String | ||
489 | "#]], | ||
490 | ); | 233 | ); |
491 | } | 234 | } |
492 | 235 | ||
493 | #[test] | 236 | #[test] |
494 | fn closure_return_coerce() { | 237 | fn closure_return_coerce() { |
495 | check_infer_with_mismatches( | 238 | check_no_mismatches( |
496 | r" | 239 | r" |
497 | fn foo() { | 240 | fn foo() { |
498 | let x = || { | 241 | let x = || { |
499 | if true { | 242 | if true { |
500 | return &1u32; | 243 | return &1u32; |
501 | } | ||
502 | &&1u32 | ||
503 | }; | ||
504 | } | 244 | } |
505 | ", | 245 | &&1u32 |
506 | expect![[r" | 246 | }; |
507 | 9..105 '{ ... }; }': () | 247 | }", |
508 | 19..20 'x': || -> &u32 | ||
509 | 23..102 '|| { ... }': || -> &u32 | ||
510 | 26..102 '{ ... }': &u32 | ||
511 | 36..81 'if tru... }': () | ||
512 | 39..43 'true': bool | ||
513 | 44..81 '{ ... }': () | ||
514 | 58..70 'return &1u32': ! | ||
515 | 65..70 '&1u32': &u32 | ||
516 | 66..70 '1u32': u32 | ||
517 | 90..96 '&&1u32': &&u32 | ||
518 | 91..96 '&1u32': &u32 | ||
519 | 92..96 '1u32': u32 | ||
520 | "]], | ||
521 | ); | 248 | ); |
522 | } | 249 | } |
523 | 250 | ||
524 | #[test] | 251 | #[test] |
525 | fn coerce_fn_item_to_fn_ptr() { | 252 | fn coerce_fn_item_to_fn_ptr() { |
526 | check_infer_with_mismatches( | 253 | check_no_mismatches( |
527 | r" | 254 | r" |
528 | fn foo(x: u32) -> isize { 1 } | 255 | fn foo(x: u32) -> isize { 1 } |
529 | fn test() { | 256 | fn test() { |
530 | let f: fn(u32) -> isize = foo; | 257 | let f: fn(u32) -> isize = foo; |
531 | } | 258 | }", |
532 | ", | ||
533 | expect![[r" | ||
534 | 7..8 'x': u32 | ||
535 | 24..29 '{ 1 }': isize | ||
536 | 26..27 '1': isize | ||
537 | 40..78 '{ ...foo; }': () | ||
538 | 50..51 'f': fn(u32) -> isize | ||
539 | 72..75 'foo': fn foo(u32) -> isize | ||
540 | "]], | ||
541 | ); | 259 | ); |
542 | } | 260 | } |
543 | 261 | ||
@@ -545,110 +263,62 @@ fn coerce_fn_item_to_fn_ptr() { | |||
545 | fn coerce_fn_items_in_match_arms() { | 263 | fn coerce_fn_items_in_match_arms() { |
546 | cov_mark::check!(coerce_fn_reification); | 264 | cov_mark::check!(coerce_fn_reification); |
547 | 265 | ||
548 | check_infer_with_mismatches( | 266 | check_types( |
549 | r" | 267 | r" |
550 | fn foo1(x: u32) -> isize { 1 } | 268 | fn foo1(x: u32) -> isize { 1 } |
551 | fn foo2(x: u32) -> isize { 2 } | 269 | fn foo2(x: u32) -> isize { 2 } |
552 | fn foo3(x: u32) -> isize { 3 } | 270 | fn foo3(x: u32) -> isize { 3 } |
553 | fn test() { | 271 | fn test() { |
554 | let x = match 1 { | 272 | let x = match 1 { |
555 | 1 => foo1, | 273 | 1 => foo1, |
556 | 2 => foo2, | 274 | 2 => foo2, |
557 | _ => foo3, | 275 | _ => foo3, |
558 | }; | 276 | }; |
559 | } | 277 | x; |
560 | ", | 278 | //^ fn(u32) -> isize |
561 | expect![[r" | 279 | }", |
562 | 8..9 'x': u32 | ||
563 | 25..30 '{ 1 }': isize | ||
564 | 27..28 '1': isize | ||
565 | 39..40 'x': u32 | ||
566 | 56..61 '{ 2 }': isize | ||
567 | 58..59 '2': isize | ||
568 | 70..71 'x': u32 | ||
569 | 87..92 '{ 3 }': isize | ||
570 | 89..90 '3': isize | ||
571 | 103..192 '{ ... }; }': () | ||
572 | 113..114 'x': fn(u32) -> isize | ||
573 | 117..189 'match ... }': fn(u32) -> isize | ||
574 | 123..124 '1': i32 | ||
575 | 135..136 '1': i32 | ||
576 | 135..136 '1': i32 | ||
577 | 140..144 'foo1': fn foo1(u32) -> isize | ||
578 | 154..155 '2': i32 | ||
579 | 154..155 '2': i32 | ||
580 | 159..163 'foo2': fn foo2(u32) -> isize | ||
581 | 173..174 '_': i32 | ||
582 | 178..182 'foo3': fn foo3(u32) -> isize | ||
583 | "]], | ||
584 | ); | 280 | ); |
585 | } | 281 | } |
586 | 282 | ||
587 | #[test] | 283 | #[test] |
588 | fn coerce_closure_to_fn_ptr() { | 284 | fn coerce_closure_to_fn_ptr() { |
589 | check_infer_with_mismatches( | 285 | check_no_mismatches( |
590 | r" | 286 | r" |
591 | fn test() { | 287 | fn test() { |
592 | let f: fn(u32) -> isize = |x| { 1 }; | 288 | let f: fn(u32) -> isize = |x| { 1 }; |
593 | } | 289 | }", |
594 | ", | ||
595 | expect![[r" | ||
596 | 10..54 '{ ...1 }; }': () | ||
597 | 20..21 'f': fn(u32) -> isize | ||
598 | 42..51 '|x| { 1 }': |u32| -> isize | ||
599 | 43..44 'x': u32 | ||
600 | 46..51 '{ 1 }': isize | ||
601 | 48..49 '1': isize | ||
602 | "]], | ||
603 | ); | 290 | ); |
604 | } | 291 | } |
605 | 292 | ||
606 | #[test] | 293 | #[test] |
607 | fn coerce_placeholder_ref() { | 294 | fn coerce_placeholder_ref() { |
608 | // placeholders should unify, even behind references | 295 | // placeholders should unify, even behind references |
609 | check_infer_with_mismatches( | 296 | check_no_mismatches( |
610 | r" | 297 | r" |
611 | struct S<T> { t: T } | 298 | struct S<T> { t: T } |
612 | impl<TT> S<TT> { | 299 | impl<TT> S<TT> { |
613 | fn get(&self) -> &TT { | 300 | fn get(&self) -> &TT { |
614 | &self.t | 301 | &self.t |
615 | } | 302 | } |
616 | } | 303 | }", |
617 | ", | ||
618 | expect![[r" | ||
619 | 50..54 'self': &S<TT> | ||
620 | 63..86 '{ ... }': &TT | ||
621 | 73..80 '&self.t': &TT | ||
622 | 74..78 'self': &S<TT> | ||
623 | 74..80 'self.t': TT | ||
624 | "]], | ||
625 | ); | 304 | ); |
626 | } | 305 | } |
627 | 306 | ||
628 | #[test] | 307 | #[test] |
629 | fn coerce_unsize_array() { | 308 | fn coerce_unsize_array() { |
630 | check_infer_with_mismatches( | 309 | check_types( |
631 | r#" | 310 | r#" |
632 | //- minicore: coerce_unsized | 311 | //- minicore: coerce_unsized |
633 | fn test() { | 312 | fn test() { |
634 | let f: &[usize] = &[1, 2, 3]; | 313 | let f: &[usize] = &[1, 2, 3]; |
635 | } | 314 | //^ usize |
636 | "#, | 315 | }"#, |
637 | expect![[r#" | ||
638 | 10..47 '{ ... 3]; }': () | ||
639 | 20..21 'f': &[usize] | ||
640 | 34..44 '&[1, 2, 3]': &[usize; 3] | ||
641 | 35..44 '[1, 2, 3]': [usize; 3] | ||
642 | 36..37 '1': usize | ||
643 | 39..40 '2': usize | ||
644 | 42..43 '3': usize | ||
645 | "#]], | ||
646 | ); | 316 | ); |
647 | } | 317 | } |
648 | 318 | ||
649 | #[test] | 319 | #[test] |
650 | fn coerce_unsize_trait_object_simple() { | 320 | fn coerce_unsize_trait_object_simple() { |
651 | check_infer_with_mismatches( | 321 | check_types( |
652 | r#" | 322 | r#" |
653 | //- minicore: coerce_unsized | 323 | //- minicore: coerce_unsized |
654 | trait Foo<T, U> {} | 324 | trait Foo<T, U> {} |
@@ -662,88 +332,18 @@ impl<T, X> Baz<T, X> for S<T, X> {} | |||
662 | 332 | ||
663 | fn test() { | 333 | fn test() { |
664 | let obj: &dyn Baz<i8, i16> = &S; | 334 | let obj: &dyn Baz<i8, i16> = &S; |
335 | //^ S<i8, i16> | ||
665 | let obj: &dyn Bar<_, i8, i16> = &S; | 336 | let obj: &dyn Bar<_, i8, i16> = &S; |
337 | //^ S<i8, i16> | ||
666 | let obj: &dyn Foo<i8, _> = &S; | 338 | let obj: &dyn Foo<i8, _> = &S; |
667 | } | 339 | //^ S<i8, {unknown}> |
668 | "#, | 340 | }"#, |
669 | expect![[r#" | ||
670 | 236..351 '{ ... &S; }': () | ||
671 | 246..249 'obj': &dyn Baz<i8, i16> | ||
672 | 271..273 '&S': &S<i8, i16> | ||
673 | 272..273 'S': S<i8, i16> | ||
674 | 283..286 'obj': &dyn Bar<usize, i8, i16> | ||
675 | 311..313 '&S': &S<i8, i16> | ||
676 | 312..313 'S': S<i8, i16> | ||
677 | 323..326 'obj': &dyn Foo<i8, usize> | ||
678 | 346..348 '&S': &S<i8, {unknown}> | ||
679 | 347..348 'S': S<i8, {unknown}> | ||
680 | "#]], | ||
681 | ); | ||
682 | } | ||
683 | |||
684 | #[test] | ||
685 | fn coerce_unsize_trait_object_to_trait_object() { | ||
686 | // FIXME: The rust reference says this should be possible, but rustc doesn't | ||
687 | // implement it. We used to support it, but Chalk doesn't. Here's the | ||
688 | // correct expect: | ||
689 | // | ||
690 | // 424..609 '{ ...bj2; }': () | ||
691 | // 434..437 'obj': &dyn Baz<i8, i16> | ||
692 | // 459..461 '&S': &S<i8, i16> | ||
693 | // 460..461 'S': S<i8, i16> | ||
694 | // 471..474 'obj': &dyn Bar<usize, i8, i16> | ||
695 | // 496..499 'obj': &dyn Baz<i8, i16> | ||
696 | // 509..512 'obj': &dyn Foo<i8, usize> | ||
697 | // 531..534 'obj': &dyn Bar<usize, i8, i16> | ||
698 | // 544..548 'obj2': &dyn Baz<i8, i16> | ||
699 | // 570..572 '&S': &S<i8, i16> | ||
700 | // 571..572 'S': S<i8, i16> | ||
701 | // 582..583 '_': &dyn Foo<i8, usize> | ||
702 | // 602..606 'obj2': &dyn Baz<i8, i16> | ||
703 | check_infer_with_mismatches( | ||
704 | r#" | ||
705 | //- minicore: coerce_unsized | ||
706 | trait Foo<T, U> {} | ||
707 | trait Bar<U, T, X>: Foo<T, U> {} | ||
708 | trait Baz<T, X>: Bar<usize, T, X> {} | ||
709 | |||
710 | struct S<T, X>; | ||
711 | impl<T, X> Foo<T, usize> for S<T, X> {} | ||
712 | impl<T, X> Bar<usize, T, X> for S<T, X> {} | ||
713 | impl<T, X> Baz<T, X> for S<T, X> {} | ||
714 | |||
715 | fn test() { | ||
716 | let obj: &dyn Baz<i8, i16> = &S; | ||
717 | let obj: &dyn Bar<_, _, _> = obj; | ||
718 | let obj: &dyn Foo<_, _> = obj; | ||
719 | let obj2: &dyn Baz<i8, i16> = &S; | ||
720 | let _: &dyn Foo<_, _> = obj2; | ||
721 | } | ||
722 | "#, | ||
723 | expect![[r#" | ||
724 | 236..421 '{ ...bj2; }': () | ||
725 | 246..249 'obj': &dyn Baz<i8, i16> | ||
726 | 271..273 '&S': &S<i8, i16> | ||
727 | 272..273 'S': S<i8, i16> | ||
728 | 283..286 'obj': &dyn Bar<{unknown}, {unknown}, {unknown}> | ||
729 | 308..311 'obj': &dyn Baz<i8, i16> | ||
730 | 321..324 'obj': &dyn Foo<{unknown}, {unknown}> | ||
731 | 343..346 'obj': &dyn Bar<{unknown}, {unknown}, {unknown}> | ||
732 | 356..360 'obj2': &dyn Baz<i8, i16> | ||
733 | 382..384 '&S': &S<i8, i16> | ||
734 | 383..384 'S': S<i8, i16> | ||
735 | 394..395 '_': &dyn Foo<{unknown}, {unknown}> | ||
736 | 414..418 'obj2': &dyn Baz<i8, i16> | ||
737 | 308..311: expected &dyn Bar<{unknown}, {unknown}, {unknown}>, got &dyn Baz<i8, i16> | ||
738 | 343..346: expected &dyn Foo<{unknown}, {unknown}>, got &dyn Bar<{unknown}, {unknown}, {unknown}> | ||
739 | 414..418: expected &dyn Foo<{unknown}, {unknown}>, got &dyn Baz<i8, i16> | ||
740 | "#]], | ||
741 | ); | 341 | ); |
742 | } | 342 | } |
743 | 343 | ||
744 | #[test] | 344 | #[test] |
745 | fn coerce_unsize_super_trait_cycle() { | 345 | fn coerce_unsize_super_trait_cycle() { |
746 | check_infer_with_mismatches( | 346 | check_no_mismatches( |
747 | r#" | 347 | r#" |
748 | //- minicore: coerce_unsized | 348 | //- minicore: coerce_unsized |
749 | trait A {} | 349 | trait A {} |
@@ -762,22 +362,13 @@ fn test() { | |||
762 | let obj: &dyn A = &S; | 362 | let obj: &dyn A = &S; |
763 | } | 363 | } |
764 | "#, | 364 | "#, |
765 | expect![[r#" | ||
766 | 140..195 '{ ... &S; }': () | ||
767 | 150..153 'obj': &dyn D | ||
768 | 164..166 '&S': &S | ||
769 | 165..166 'S': S | ||
770 | 176..179 'obj': &dyn A | ||
771 | 190..192 '&S': &S | ||
772 | 191..192 'S': S | ||
773 | "#]], | ||
774 | ); | 365 | ); |
775 | } | 366 | } |
776 | 367 | ||
777 | #[test] | 368 | #[test] |
778 | fn coerce_unsize_generic() { | 369 | fn coerce_unsize_generic() { |
779 | // FIXME: fix the type mismatches here | 370 | // FIXME: fix the type mismatches here |
780 | check_infer_with_mismatches( | 371 | check( |
781 | r#" | 372 | r#" |
782 | //- minicore: coerce_unsized | 373 | //- minicore: coerce_unsized |
783 | struct Foo<T> { t: T }; | 374 | struct Foo<T> { t: T }; |
@@ -785,73 +376,47 @@ struct Bar<T>(Foo<T>); | |||
785 | 376 | ||
786 | fn test() { | 377 | fn test() { |
787 | let _: &Foo<[usize]> = &Foo { t: [1, 2, 3] }; | 378 | let _: &Foo<[usize]> = &Foo { t: [1, 2, 3] }; |
379 | //^^^^^^^^^ expected [usize], got [usize; 3] | ||
788 | let _: &Bar<[usize]> = &Bar(Foo { t: [1, 2, 3] }); | 380 | let _: &Bar<[usize]> = &Bar(Foo { t: [1, 2, 3] }); |
381 | //^^^^^^^^^^^^^^^^^^^^^^^^^^ expected &Bar<[usize]>, got &Bar<[i32; 3]> | ||
789 | } | 382 | } |
790 | "#, | 383 | "#, |
791 | expect![[r#" | ||
792 | 58..166 '{ ... }); }': () | ||
793 | 68..69 '_': &Foo<[usize]> | ||
794 | 87..108 '&Foo {..., 3] }': &Foo<[usize]> | ||
795 | 88..108 'Foo { ..., 3] }': Foo<[usize]> | ||
796 | 97..106 '[1, 2, 3]': [usize; 3] | ||
797 | 98..99 '1': usize | ||
798 | 101..102 '2': usize | ||
799 | 104..105 '3': usize | ||
800 | 118..119 '_': &Bar<[usize]> | ||
801 | 137..163 '&Bar(F... 3] })': &Bar<[i32; 3]> | ||
802 | 138..141 'Bar': Bar<[i32; 3]>(Foo<[i32; 3]>) -> Bar<[i32; 3]> | ||
803 | 138..163 'Bar(Fo... 3] })': Bar<[i32; 3]> | ||
804 | 142..162 'Foo { ..., 3] }': Foo<[i32; 3]> | ||
805 | 151..160 '[1, 2, 3]': [i32; 3] | ||
806 | 152..153 '1': i32 | ||
807 | 155..156 '2': i32 | ||
808 | 158..159 '3': i32 | ||
809 | 97..106: expected [usize], got [usize; 3] | ||
810 | 137..163: expected &Bar<[usize]>, got &Bar<[i32; 3]> | ||
811 | "#]], | ||
812 | ); | 384 | ); |
813 | } | 385 | } |
814 | 386 | ||
815 | #[test] | 387 | #[test] |
816 | fn coerce_unsize_apit() { | 388 | fn coerce_unsize_apit() { |
817 | // FIXME: #8984 | 389 | // FIXME: #8984 |
818 | check_infer_with_mismatches( | 390 | check( |
819 | r#" | 391 | r#" |
820 | //- minicore: coerce_unsized | 392 | //- minicore: coerce_unsized |
821 | trait Foo {} | 393 | trait Foo {} |
822 | 394 | ||
823 | fn test(f: impl Foo) { | 395 | fn test(f: impl Foo) { |
824 | let _: &dyn Foo = &f; | 396 | let _: &dyn Foo = &f; |
397 | //^^ expected &dyn Foo, got &impl Foo | ||
825 | } | 398 | } |
826 | "#, | 399 | "#, |
827 | expect![[r#" | ||
828 | 22..23 'f': impl Foo | ||
829 | 35..64 '{ ... &f; }': () | ||
830 | 45..46 '_': &dyn Foo | ||
831 | 59..61 '&f': &impl Foo | ||
832 | 60..61 'f': impl Foo | ||
833 | 59..61: expected &dyn Foo, got &impl Foo | ||
834 | "#]], | ||
835 | ); | 400 | ); |
836 | } | 401 | } |
837 | 402 | ||
838 | #[test] | 403 | #[test] |
839 | fn infer_two_closures_lub() { | 404 | fn two_closures_lub() { |
840 | check_types( | 405 | check_types( |
841 | r#" | 406 | r#" |
842 | fn foo(c: i32) { | 407 | fn foo(c: i32) { |
843 | let add = |a: i32, b: i32| a + b; | 408 | let add = |a: i32, b: i32| a + b; |
844 | let sub = |a, b| a - b; | 409 | let sub = |a, b| a - b; |
845 | //^ |i32, i32| -> i32 | 410 | //^^^^^^^^^^^^ |i32, i32| -> i32 |
846 | if c > 42 { add } else { sub }; | 411 | if c > 42 { add } else { sub }; |
847 | //^ fn(i32, i32) -> i32 | 412 | //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ fn(i32, i32) -> i32 |
848 | } | 413 | } |
849 | "#, | 414 | "#, |
850 | ) | 415 | ) |
851 | } | 416 | } |
852 | 417 | ||
853 | #[test] | 418 | #[test] |
854 | fn infer_match_diverging_branch_1() { | 419 | fn match_diverging_branch_1() { |
855 | check_types( | 420 | check_types( |
856 | r#" | 421 | r#" |
857 | enum Result<T> { Ok(T), Err } | 422 | enum Result<T> { Ok(T), Err } |
@@ -870,7 +435,7 @@ fn test() -> i32 { | |||
870 | } | 435 | } |
871 | 436 | ||
872 | #[test] | 437 | #[test] |
873 | fn infer_match_diverging_branch_2() { | 438 | fn match_diverging_branch_2() { |
874 | // same as 1 except for order of branches | 439 | // same as 1 except for order of branches |
875 | check_types( | 440 | check_types( |
876 | r#" | 441 | r#" |
diff --git a/crates/hir_ty/src/tests/display_source_code.rs b/crates/hir_ty/src/tests/display_source_code.rs index 3d29021aa..058cd02d7 100644 --- a/crates/hir_ty/src/tests/display_source_code.rs +++ b/crates/hir_ty/src/tests/display_source_code.rs | |||
@@ -10,8 +10,8 @@ mod foo { | |||
10 | 10 | ||
11 | fn bar() { | 11 | fn bar() { |
12 | let foo: foo::Foo = foo::Foo; | 12 | let foo: foo::Foo = foo::Foo; |
13 | foo | 13 | foo; |
14 | } //^ foo::Foo | 14 | } //^^^ foo::Foo |
15 | 15 | ||
16 | "#, | 16 | "#, |
17 | ); | 17 | ); |
@@ -25,7 +25,7 @@ struct Foo<T = u8> { t: T } | |||
25 | fn main() { | 25 | fn main() { |
26 | let foo = Foo { t: 5u8 }; | 26 | let foo = Foo { t: 5u8 }; |
27 | foo; | 27 | foo; |
28 | } //^ Foo | 28 | } //^^^ Foo |
29 | "#, | 29 | "#, |
30 | ); | 30 | ); |
31 | 31 | ||
@@ -35,7 +35,7 @@ struct Foo<K, T = u8> { k: K, t: T } | |||
35 | fn main() { | 35 | fn main() { |
36 | let foo = Foo { k: 400, t: 5u8 }; | 36 | let foo = Foo { k: 400, t: 5u8 }; |
37 | foo; | 37 | foo; |
38 | } //^ Foo<i32> | 38 | } //^^^ Foo<i32> |
39 | "#, | 39 | "#, |
40 | ); | 40 | ); |
41 | } | 41 | } |
@@ -50,7 +50,7 @@ fn foo() -> *const (impl Unpin + Sized) { loop {} } | |||
50 | fn main() { | 50 | fn main() { |
51 | let foo = foo(); | 51 | let foo = foo(); |
52 | foo; | 52 | foo; |
53 | } //^ *const (impl Unpin + Sized) | 53 | } //^^^ *const (impl Unpin + Sized) |
54 | "#, | 54 | "#, |
55 | ); | 55 | ); |
56 | } | 56 | } |
diff --git a/crates/hir_ty/src/tests/macros.rs b/crates/hir_ty/src/tests/macros.rs index d14103aab..2cf41e49e 100644 --- a/crates/hir_ty/src/tests/macros.rs +++ b/crates/hir_ty/src/tests/macros.rs | |||
@@ -435,11 +435,11 @@ fn processes_impls_generated_by_macros() { | |||
435 | macro_rules! m { | 435 | macro_rules! m { |
436 | ($ident:ident) => (impl Trait for $ident {}) | 436 | ($ident:ident) => (impl Trait for $ident {}) |
437 | } | 437 | } |
438 | trait Trait { fn foo(self) -> u128 {} } | 438 | trait Trait { fn foo(self) -> u128 { 0 } } |
439 | struct S; | 439 | struct S; |
440 | m!(S); | 440 | m!(S); |
441 | fn test() { S.foo(); } | 441 | fn test() { S.foo(); } |
442 | //^ u128 | 442 | //^^^^^^^ u128 |
443 | "#, | 443 | "#, |
444 | ); | 444 | ); |
445 | } | 445 | } |
@@ -457,7 +457,7 @@ impl S { | |||
457 | } | 457 | } |
458 | 458 | ||
459 | fn test() { S.foo(); } | 459 | fn test() { S.foo(); } |
460 | //^ u128 | 460 | //^^^^^^^ u128 |
461 | "#, | 461 | "#, |
462 | ); | 462 | ); |
463 | } | 463 | } |
@@ -479,7 +479,7 @@ impl S { | |||
479 | } | 479 | } |
480 | 480 | ||
481 | fn test() { S.foo(); } | 481 | fn test() { S.foo(); } |
482 | //^ u128 | 482 | //^^^^^^^ u128 |
483 | "#, | 483 | "#, |
484 | ); | 484 | ); |
485 | } | 485 | } |
@@ -743,7 +743,7 @@ include!("foo.rs"); | |||
743 | 743 | ||
744 | fn main() { | 744 | fn main() { |
745 | bar(); | 745 | bar(); |
746 | } //^ u32 | 746 | } //^^^^^ u32 |
747 | 747 | ||
748 | //- /foo.rs | 748 | //- /foo.rs |
749 | fn bar() -> u32 {0} | 749 | fn bar() -> u32 {0} |
@@ -781,7 +781,7 @@ include!("f/foo.rs"); | |||
781 | 781 | ||
782 | fn main() { | 782 | fn main() { |
783 | bar::bar(); | 783 | bar::bar(); |
784 | } //^ u32 | 784 | } //^^^^^^^^^^ u32 |
785 | 785 | ||
786 | //- /f/foo.rs | 786 | //- /f/foo.rs |
787 | pub mod bar; | 787 | pub mod bar; |
@@ -853,7 +853,7 @@ include!("foo.rs"); | |||
853 | 853 | ||
854 | fn main() { | 854 | fn main() { |
855 | RegisterBlock { }; | 855 | RegisterBlock { }; |
856 | //^ RegisterBlock | 856 | //^^^^^^^^^^^^^^^^^ RegisterBlock |
857 | } | 857 | } |
858 | "#; | 858 | "#; |
859 | let fixture = format!("{}\n//- /foo.rs\n{}", fixture, data); | 859 | let fixture = format!("{}\n//- /foo.rs\n{}", fixture, data); |
@@ -879,7 +879,7 @@ include!(concat!("f", "oo.rs")); | |||
879 | 879 | ||
880 | fn main() { | 880 | fn main() { |
881 | bar(); | 881 | bar(); |
882 | } //^ u32 | 882 | } //^^^^^ u32 |
883 | 883 | ||
884 | //- /foo.rs | 884 | //- /foo.rs |
885 | fn bar() -> u32 {0} | 885 | fn bar() -> u32 {0} |
@@ -905,7 +905,7 @@ include!(concat!(env!("OUT_DIR"), "/foo.rs")); | |||
905 | 905 | ||
906 | fn main() { | 906 | fn main() { |
907 | bar(); | 907 | bar(); |
908 | } //^ {unknown} | 908 | } //^^^^^ {unknown} |
909 | 909 | ||
910 | //- /foo.rs | 910 | //- /foo.rs |
911 | fn bar() -> u32 {0} | 911 | fn bar() -> u32 {0} |
@@ -923,7 +923,7 @@ macro_rules! include {() => {}} | |||
923 | include!("main.rs"); | 923 | include!("main.rs"); |
924 | 924 | ||
925 | fn main() { | 925 | fn main() { |
926 | 0 | 926 | 0; |
927 | } //^ i32 | 927 | } //^ i32 |
928 | "#, | 928 | "#, |
929 | ); | 929 | ); |
@@ -979,7 +979,7 @@ fn infer_derive_clone_simple() { | |||
979 | struct S; | 979 | struct S; |
980 | fn test() { | 980 | fn test() { |
981 | S.clone(); | 981 | S.clone(); |
982 | } //^ S | 982 | } //^^^^^^^^^ S |
983 | 983 | ||
984 | //- /lib.rs crate:core | 984 | //- /lib.rs crate:core |
985 | pub mod prelude { | 985 | pub mod prelude { |
@@ -1028,7 +1028,7 @@ pub struct S; | |||
1028 | use core::S; | 1028 | use core::S; |
1029 | fn test() { | 1029 | fn test() { |
1030 | S.clone(); | 1030 | S.clone(); |
1031 | } //^ S | 1031 | } //^^^^^^^^^ S |
1032 | "#, | 1032 | "#, |
1033 | ); | 1033 | ); |
1034 | } | 1034 | } |
@@ -1044,7 +1044,8 @@ struct S; | |||
1044 | struct Wrapper<T>(T); | 1044 | struct Wrapper<T>(T); |
1045 | struct NonClone; | 1045 | struct NonClone; |
1046 | fn test() { | 1046 | fn test() { |
1047 | (Wrapper(S).clone(), Wrapper(NonClone).clone()); | 1047 | let x = (Wrapper(S).clone(), Wrapper(NonClone).clone()); |
1048 | x; | ||
1048 | //^ (Wrapper<S>, {unknown}) | 1049 | //^ (Wrapper<S>, {unknown}) |
1049 | } | 1050 | } |
1050 | 1051 | ||
@@ -1079,7 +1080,7 @@ struct S{} | |||
1079 | 1080 | ||
1080 | fn test() { | 1081 | fn test() { |
1081 | S{}; | 1082 | S{}; |
1082 | } //^ S | 1083 | } //^^^ S |
1083 | "#, | 1084 | "#, |
1084 | ); | 1085 | ); |
1085 | } | 1086 | } |
diff --git a/crates/hir_ty/src/tests/method_resolution.rs b/crates/hir_ty/src/tests/method_resolution.rs index d9b5ee9cf..3f7a37295 100644 --- a/crates/hir_ty/src/tests/method_resolution.rs +++ b/crates/hir_ty/src/tests/method_resolution.rs | |||
@@ -257,7 +257,7 @@ fn test() { | |||
257 | mod foo { | 257 | mod foo { |
258 | struct S; | 258 | struct S; |
259 | impl S { | 259 | impl S { |
260 | fn thing() -> i128 {} | 260 | fn thing() -> i128 { 0 } |
261 | } | 261 | } |
262 | } | 262 | } |
263 | "#, | 263 | "#, |
@@ -267,164 +267,128 @@ mod foo { | |||
267 | #[test] | 267 | #[test] |
268 | fn infer_trait_method_simple() { | 268 | fn infer_trait_method_simple() { |
269 | // the trait implementation is intentionally incomplete -- it shouldn't matter | 269 | // the trait implementation is intentionally incomplete -- it shouldn't matter |
270 | check_infer( | 270 | check_types( |
271 | r#" | 271 | r#" |
272 | trait Trait1 { | 272 | trait Trait1 { |
273 | fn method(&self) -> u32; | 273 | fn method(&self) -> u32; |
274 | } | 274 | } |
275 | struct S1; | 275 | struct S1; |
276 | impl Trait1 for S1 {} | 276 | impl Trait1 for S1 {} |
277 | trait Trait2 { | 277 | trait Trait2 { |
278 | fn method(&self) -> i128; | 278 | fn method(&self) -> i128; |
279 | } | 279 | } |
280 | struct S2; | 280 | struct S2; |
281 | impl Trait2 for S2 {} | 281 | impl Trait2 for S2 {} |
282 | fn test() { | 282 | fn test() { |
283 | S1.method(); // -> u32 | 283 | S1.method(); |
284 | S2.method(); // -> i128 | 284 | //^^^^^^^^^^^ u32 |
285 | } | 285 | S2.method(); // -> i128 |
286 | //^^^^^^^^^^^ i128 | ||
287 | } | ||
286 | "#, | 288 | "#, |
287 | expect![[r#" | ||
288 | 30..34 'self': &Self | ||
289 | 109..113 'self': &Self | ||
290 | 169..227 '{ ...i128 }': () | ||
291 | 175..177 'S1': S1 | ||
292 | 175..186 'S1.method()': u32 | ||
293 | 202..204 'S2': S2 | ||
294 | 202..213 'S2.method()': i128 | ||
295 | "#]], | ||
296 | ); | 289 | ); |
297 | } | 290 | } |
298 | 291 | ||
299 | #[test] | 292 | #[test] |
300 | fn infer_trait_method_scoped() { | 293 | fn infer_trait_method_scoped() { |
301 | // the trait implementation is intentionally incomplete -- it shouldn't matter | 294 | // the trait implementation is intentionally incomplete -- it shouldn't matter |
302 | check_infer( | 295 | check_types( |
303 | r#" | 296 | r#" |
304 | struct S; | 297 | struct S; |
305 | mod foo { | 298 | mod foo { |
306 | pub trait Trait1 { | 299 | pub trait Trait1 { |
307 | fn method(&self) -> u32; | 300 | fn method(&self) -> u32; |
308 | } | 301 | } |
309 | impl Trait1 for super::S {} | 302 | impl Trait1 for super::S {} |
310 | } | 303 | } |
311 | mod bar { | 304 | mod bar { |
312 | pub trait Trait2 { | 305 | pub trait Trait2 { |
313 | fn method(&self) -> i128; | 306 | fn method(&self) -> i128; |
314 | } | 307 | } |
315 | impl Trait2 for super::S {} | 308 | impl Trait2 for super::S {} |
316 | } | 309 | } |
317 | 310 | ||
318 | mod foo_test { | 311 | mod foo_test { |
319 | use super::S; | 312 | use super::S; |
320 | use super::foo::Trait1; | 313 | use super::foo::Trait1; |
321 | fn test() { | 314 | fn test() { |
322 | S.method(); // -> u32 | 315 | S.method(); |
323 | } | 316 | //^^^^^^^^^^ u32 |
324 | } | 317 | } |
318 | } | ||
325 | 319 | ||
326 | mod bar_test { | 320 | mod bar_test { |
327 | use super::S; | 321 | use super::S; |
328 | use super::bar::Trait2; | 322 | use super::bar::Trait2; |
329 | fn test() { | 323 | fn test() { |
330 | S.method(); // -> i128 | 324 | S.method(); |
331 | } | 325 | //^^^^^^^^^^ i128 |
332 | } | 326 | } |
327 | } | ||
333 | "#, | 328 | "#, |
334 | expect![[r#" | ||
335 | 62..66 'self': &Self | ||
336 | 168..172 'self': &Self | ||
337 | 299..336 '{ ... }': () | ||
338 | 309..310 'S': S | ||
339 | 309..319 'S.method()': u32 | ||
340 | 415..453 '{ ... }': () | ||
341 | 425..426 'S': S | ||
342 | 425..435 'S.method()': i128 | ||
343 | "#]], | ||
344 | ); | 329 | ); |
345 | } | 330 | } |
346 | 331 | ||
347 | #[test] | 332 | #[test] |
348 | fn infer_trait_method_generic_1() { | 333 | fn infer_trait_method_generic_1() { |
349 | // the trait implementation is intentionally incomplete -- it shouldn't matter | 334 | // the trait implementation is intentionally incomplete -- it shouldn't matter |
350 | check_infer( | 335 | check_types( |
351 | r#" | 336 | r#" |
352 | trait Trait<T> { | 337 | trait Trait<T> { |
353 | fn method(&self) -> T; | 338 | fn method(&self) -> T; |
354 | } | 339 | } |
355 | struct S; | 340 | struct S; |
356 | impl Trait<u32> for S {} | 341 | impl Trait<u32> for S {} |
357 | fn test() { | 342 | fn test() { |
358 | S.method(); | 343 | S.method(); |
359 | } | 344 | //^^^^^^^^^^ u32 |
345 | } | ||
360 | "#, | 346 | "#, |
361 | expect![[r#" | ||
362 | 32..36 'self': &Self | ||
363 | 91..110 '{ ...d(); }': () | ||
364 | 97..98 'S': S | ||
365 | 97..107 'S.method()': u32 | ||
366 | "#]], | ||
367 | ); | 347 | ); |
368 | } | 348 | } |
369 | 349 | ||
370 | #[test] | 350 | #[test] |
371 | fn infer_trait_method_generic_more_params() { | 351 | fn infer_trait_method_generic_more_params() { |
372 | // the trait implementation is intentionally incomplete -- it shouldn't matter | 352 | // the trait implementation is intentionally incomplete -- it shouldn't matter |
373 | check_infer( | 353 | check_types( |
374 | r#" | 354 | r#" |
375 | trait Trait<T1, T2, T3> { | 355 | trait Trait<T1, T2, T3> { |
376 | fn method1(&self) -> (T1, T2, T3); | 356 | fn method1(&self) -> (T1, T2, T3); |
377 | fn method2(&self) -> (T3, T2, T1); | 357 | fn method2(&self) -> (T3, T2, T1); |
378 | } | 358 | } |
379 | struct S1; | 359 | struct S1; |
380 | impl Trait<u8, u16, u32> for S1 {} | 360 | impl Trait<u8, u16, u32> for S1 {} |
381 | struct S2; | 361 | struct S2; |
382 | impl<T> Trait<i8, i16, T> for S2 {} | 362 | impl<T> Trait<i8, i16, T> for S2 {} |
383 | fn test() { | 363 | fn test() { |
384 | S1.method1(); // u8, u16, u32 | 364 | S1.method1(); |
385 | S1.method2(); // u32, u16, u8 | 365 | //^^^^^^^^^^^^ (u8, u16, u32) |
386 | S2.method1(); // i8, i16, {unknown} | 366 | S1.method2(); |
387 | S2.method2(); // {unknown}, i16, i8 | 367 | //^^^^^^^^^^^^ (u32, u16, u8) |
388 | } | 368 | S2.method1(); |
369 | //^^^^^^^^^^^^ (i8, i16, {unknown}) | ||
370 | S2.method2(); | ||
371 | //^^^^^^^^^^^^ ({unknown}, i16, i8) | ||
372 | } | ||
389 | "#, | 373 | "#, |
390 | expect![[r#" | ||
391 | 42..46 'self': &Self | ||
392 | 81..85 'self': &Self | ||
393 | 209..360 '{ ..., i8 }': () | ||
394 | 215..217 'S1': S1 | ||
395 | 215..227 'S1.method1()': (u8, u16, u32) | ||
396 | 249..251 'S1': S1 | ||
397 | 249..261 'S1.method2()': (u32, u16, u8) | ||
398 | 283..285 'S2': S2 | ||
399 | 283..295 'S2.method1()': (i8, i16, {unknown}) | ||
400 | 323..325 'S2': S2 | ||
401 | 323..335 'S2.method2()': ({unknown}, i16, i8) | ||
402 | "#]], | ||
403 | ); | 374 | ); |
404 | } | 375 | } |
405 | 376 | ||
406 | #[test] | 377 | #[test] |
407 | fn infer_trait_method_generic_2() { | 378 | fn infer_trait_method_generic_2() { |
408 | // the trait implementation is intentionally incomplete -- it shouldn't matter | 379 | // the trait implementation is intentionally incomplete -- it shouldn't matter |
409 | check_infer( | 380 | check_types( |
410 | r#" | 381 | r#" |
411 | trait Trait<T> { | 382 | trait Trait<T> { |
412 | fn method(&self) -> T; | 383 | fn method(&self) -> T; |
413 | } | 384 | } |
414 | struct S<T>(T); | 385 | struct S<T>(T); |
415 | impl<U> Trait<U> for S<U> {} | 386 | impl<U> Trait<U> for S<U> {} |
416 | fn test() { | 387 | fn test() { |
417 | S(1u32).method(); | 388 | S(1u32).method(); |
418 | } | 389 | //^^^^^^^^^^^^^^^^ u32 |
390 | } | ||
419 | "#, | 391 | "#, |
420 | expect![[r#" | ||
421 | 32..36 'self': &Self | ||
422 | 101..126 '{ ...d(); }': () | ||
423 | 107..108 'S': S<u32>(u32) -> S<u32> | ||
424 | 107..114 'S(1u32)': S<u32> | ||
425 | 107..123 'S(1u32...thod()': u32 | ||
426 | 109..113 '1u32': u32 | ||
427 | "#]], | ||
428 | ); | 392 | ); |
429 | } | 393 | } |
430 | 394 | ||
@@ -685,10 +649,10 @@ fn method_resolution_unify_impl_self_type() { | |||
685 | check_types( | 649 | check_types( |
686 | r#" | 650 | r#" |
687 | struct S<T>; | 651 | struct S<T>; |
688 | impl S<u32> { fn foo(&self) -> u8 {} } | 652 | impl S<u32> { fn foo(&self) -> u8 { 0 } } |
689 | impl S<i32> { fn foo(&self) -> i8 {} } | 653 | impl S<i32> { fn foo(&self) -> i8 { 0 } } |
690 | fn test() { (S::<u32>.foo(), S::<i32>.foo()); } | 654 | fn test() { (S::<u32>.foo(), S::<i32>.foo()); } |
691 | //^ (u8, i8) | 655 | //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (u8, i8) |
692 | "#, | 656 | "#, |
693 | ); | 657 | ); |
694 | } | 658 | } |
@@ -702,7 +666,7 @@ struct S; | |||
702 | impl S { fn foo(&self) -> i8 { 0 } } | 666 | impl S { fn foo(&self) -> i8 { 0 } } |
703 | impl Trait for S { fn foo(self) -> u128 { 0 } } | 667 | impl Trait for S { fn foo(self) -> u128 { 0 } } |
704 | fn test() { S.foo(); } | 668 | fn test() { S.foo(); } |
705 | //^ u128 | 669 | //^^^^^^^ u128 |
706 | "#, | 670 | "#, |
707 | ); | 671 | ); |
708 | } | 672 | } |
@@ -716,7 +680,7 @@ struct S; | |||
716 | impl Clone for S {} | 680 | impl Clone for S {} |
717 | impl Clone for &S {} | 681 | impl Clone for &S {} |
718 | fn test() { (S.clone(), (&S).clone(), (&&S).clone()); } | 682 | fn test() { (S.clone(), (&S).clone(), (&&S).clone()); } |
719 | //^ (S, S, &S) | 683 | //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (S, S, &S) |
720 | "#, | 684 | "#, |
721 | ); | 685 | ); |
722 | } | 686 | } |
@@ -730,7 +694,7 @@ struct S; | |||
730 | impl S { fn foo(self) -> i8 { 0 } } | 694 | impl S { fn foo(self) -> i8 { 0 } } |
731 | impl Trait for &S { fn foo(self) -> u128 { 0 } } | 695 | impl Trait for &S { fn foo(self) -> u128 { 0 } } |
732 | fn test() { (&S).foo(); } | 696 | fn test() { (&S).foo(); } |
733 | //^ u128 | 697 | //^^^^^^^^^^ u128 |
734 | "#, | 698 | "#, |
735 | ); | 699 | ); |
736 | } | 700 | } |
@@ -744,7 +708,7 @@ struct S; | |||
744 | impl S { fn foo(self) -> i8 { 0 } } | 708 | impl S { fn foo(self) -> i8 { 0 } } |
745 | impl Trait for S { fn foo(self) -> u128 { 0 } } | 709 | impl Trait for S { fn foo(self) -> u128 { 0 } } |
746 | fn test() { S.foo(); } | 710 | fn test() { S.foo(); } |
747 | //^ i8 | 711 | //^^^^^^^ i8 |
748 | "#, | 712 | "#, |
749 | ); | 713 | ); |
750 | } | 714 | } |
@@ -758,7 +722,7 @@ struct S; | |||
758 | impl S { fn foo(&self) -> i8 { 0 } } | 722 | impl S { fn foo(&self) -> i8 { 0 } } |
759 | impl Trait for &S { fn foo(self) -> u128 { 0 } } | 723 | impl Trait for &S { fn foo(self) -> u128 { 0 } } |
760 | fn test() { S.foo(); } | 724 | fn test() { S.foo(); } |
761 | //^ i8 | 725 | //^^^^^^^ i8 |
762 | "#, | 726 | "#, |
763 | ); | 727 | ); |
764 | } | 728 | } |
@@ -771,7 +735,7 @@ trait Trait { fn foo(self) -> u128; } | |||
771 | struct S; | 735 | struct S; |
772 | impl Trait for S { fn foo(self) -> u128 { 0 } } | 736 | impl Trait for S { fn foo(self) -> u128 { 0 } } |
773 | fn test() { (&S).foo(); } | 737 | fn test() { (&S).foo(); } |
774 | //^ u128 | 738 | //^^^^^^^^^^ u128 |
775 | "#, | 739 | "#, |
776 | ); | 740 | ); |
777 | } | 741 | } |
@@ -784,7 +748,7 @@ fn method_resolution_unsize_array() { | |||
784 | fn test() { | 748 | fn test() { |
785 | let a = [1, 2, 3]; | 749 | let a = [1, 2, 3]; |
786 | a.len(); | 750 | a.len(); |
787 | } //^ usize | 751 | } //^^^^^^^ usize |
788 | "#, | 752 | "#, |
789 | ); | 753 | ); |
790 | } | 754 | } |
@@ -799,7 +763,7 @@ impl Clone for S {} | |||
799 | 763 | ||
800 | fn test() { | 764 | fn test() { |
801 | S.clone(); | 765 | S.clone(); |
802 | //^ S | 766 | //^^^^^^^^^ S |
803 | } | 767 | } |
804 | 768 | ||
805 | //- /lib.rs crate:core | 769 | //- /lib.rs crate:core |
@@ -823,7 +787,7 @@ trait Trait { fn foo(self) -> u128; } | |||
823 | struct S; | 787 | struct S; |
824 | impl<T> Trait for T where T: UnknownTrait {} | 788 | impl<T> Trait for T where T: UnknownTrait {} |
825 | fn test() { (&S).foo(); } | 789 | fn test() { (&S).foo(); } |
826 | //^ u128 | 790 | //^^^^^^^^^^ u128 |
827 | "#, | 791 | "#, |
828 | ); | 792 | ); |
829 | } | 793 | } |
@@ -841,7 +805,7 @@ trait Trait { fn foo(self) -> u128; } | |||
841 | struct S; | 805 | struct S; |
842 | impl<T> Trait for T where T: Clone {} | 806 | impl<T> Trait for T where T: Clone {} |
843 | fn test() { (&S).foo(); } | 807 | fn test() { (&S).foo(); } |
844 | //^ {unknown} | 808 | //^^^^^^^^^^ {unknown} |
845 | "#, | 809 | "#, |
846 | ); | 810 | ); |
847 | } | 811 | } |
@@ -856,7 +820,7 @@ trait Trait { fn foo(self) -> u128; } | |||
856 | struct S; | 820 | struct S; |
857 | impl<T: Clone> Trait for T {} | 821 | impl<T: Clone> Trait for T {} |
858 | fn test() { (&S).foo(); } | 822 | fn test() { (&S).foo(); } |
859 | //^ {unknown} | 823 | //^^^^^^^^^^ {unknown} |
860 | "#, | 824 | "#, |
861 | ); | 825 | ); |
862 | } | 826 | } |
@@ -871,7 +835,7 @@ struct S; | |||
871 | impl Clone for S {} | 835 | impl Clone for S {} |
872 | impl<T> Trait for T where T: Clone {} | 836 | impl<T> Trait for T where T: Clone {} |
873 | fn test() { S.foo(); } | 837 | fn test() { S.foo(); } |
874 | //^ u128 | 838 | //^^^^^^^ u128 |
875 | "#, | 839 | "#, |
876 | ); | 840 | ); |
877 | } | 841 | } |
@@ -887,7 +851,7 @@ struct S2; | |||
887 | impl From<S2> for S1 {} | 851 | impl From<S2> for S1 {} |
888 | impl<T, U> Into<U> for T where U: From<T> {} | 852 | impl<T, U> Into<U> for T where U: From<T> {} |
889 | fn test() { S2.into(); } | 853 | fn test() { S2.into(); } |
890 | //^ {unknown} | 854 | //^^^^^^^^^ {unknown} |
891 | "#, | 855 | "#, |
892 | ); | 856 | ); |
893 | } | 857 | } |
@@ -903,7 +867,7 @@ struct S2; | |||
903 | impl From<S2> for S1 {} | 867 | impl From<S2> for S1 {} |
904 | impl<T, U: From<T>> Into<U> for T {} | 868 | impl<T, U: From<T>> Into<U> for T {} |
905 | fn test() { S2.into(); } | 869 | fn test() { S2.into(); } |
906 | //^ {unknown} | 870 | //^^^^^^^^^ {unknown} |
907 | "#, | 871 | "#, |
908 | ); | 872 | ); |
909 | } | 873 | } |
@@ -933,7 +897,7 @@ fn main() { | |||
933 | let a = Wrapper::<Foo<f32>>::new(1.0); | 897 | let a = Wrapper::<Foo<f32>>::new(1.0); |
934 | let b = Wrapper::<Bar<f32>>::new(1.0); | 898 | let b = Wrapper::<Bar<f32>>::new(1.0); |
935 | (a, b); | 899 | (a, b); |
936 | //^ (Wrapper<Foo<f32>>, Wrapper<Bar<f32>>) | 900 | //^^^^^^ (Wrapper<Foo<f32>>, Wrapper<Bar<f32>>) |
937 | } | 901 | } |
938 | "#, | 902 | "#, |
939 | ); | 903 | ); |
@@ -947,7 +911,7 @@ fn method_resolution_encountering_fn_type() { | |||
947 | fn foo() {} | 911 | fn foo() {} |
948 | trait FnOnce { fn call(self); } | 912 | trait FnOnce { fn call(self); } |
949 | fn test() { foo.call(); } | 913 | fn test() { foo.call(); } |
950 | //^ {unknown} | 914 | //^^^^^^^^^^ {unknown} |
951 | "#, | 915 | "#, |
952 | ); | 916 | ); |
953 | } | 917 | } |
@@ -1013,7 +977,7 @@ where | |||
1013 | Wrapper<T>: a::Foo, | 977 | Wrapper<T>: a::Foo, |
1014 | { | 978 | { |
1015 | t.foo(); | 979 | t.foo(); |
1016 | } //^ {unknown} | 980 | } //^^^^^^^ {unknown} |
1017 | "#, | 981 | "#, |
1018 | ); | 982 | ); |
1019 | } | 983 | } |
@@ -1030,7 +994,7 @@ impl A<i32> { | |||
1030 | 994 | ||
1031 | fn main() { | 995 | fn main() { |
1032 | A::from(3); | 996 | A::from(3); |
1033 | } //^ A<i32> | 997 | } //^^^^^^^^^^ A<i32> |
1034 | "#, | 998 | "#, |
1035 | ); | 999 | ); |
1036 | } | 1000 | } |
@@ -1058,7 +1022,7 @@ trait FnX {} | |||
1058 | impl<B, C> Trait for S<B, C> where C: FnX, B: SendX {} | 1022 | impl<B, C> Trait for S<B, C> where C: FnX, B: SendX {} |
1059 | 1023 | ||
1060 | fn test() { (S {}).method(); } | 1024 | fn test() { (S {}).method(); } |
1061 | //^ () | 1025 | //^^^^^^^^^^^^^^^ () |
1062 | "#, | 1026 | "#, |
1063 | ); | 1027 | ); |
1064 | } | 1028 | } |
@@ -1143,8 +1107,8 @@ impl<T> Slice<T> { | |||
1143 | 1107 | ||
1144 | fn main() { | 1108 | fn main() { |
1145 | let foo: Slice<u32>; | 1109 | let foo: Slice<u32>; |
1146 | (foo.into_vec()); // we don't actually support arbitrary self types, but we shouldn't crash at least | 1110 | foo.into_vec(); // we shouldn't crash on this at least |
1147 | } //^ {unknown} | 1111 | } //^^^^^^^^^^^^^^ {unknown} |
1148 | "#, | 1112 | "#, |
1149 | ); | 1113 | ); |
1150 | } | 1114 | } |
@@ -1165,7 +1129,7 @@ impl dyn Foo + '_ { | |||
1165 | fn main() { | 1129 | fn main() { |
1166 | let f = &42u32 as &dyn Foo; | 1130 | let f = &42u32 as &dyn Foo; |
1167 | f.dyn_foo(); | 1131 | f.dyn_foo(); |
1168 | // ^u32 | 1132 | // ^^^^^^^^^^^ u32 |
1169 | } | 1133 | } |
1170 | "#, | 1134 | "#, |
1171 | ); | 1135 | ); |
@@ -1376,11 +1340,11 @@ pub trait IntoIterator { | |||
1376 | 1340 | ||
1377 | impl<T> IntoIterator for [T; 1] { | 1341 | impl<T> IntoIterator for [T; 1] { |
1378 | type Out = T; | 1342 | type Out = T; |
1379 | fn into_iter(self) -> Self::Out {} | 1343 | fn into_iter(self) -> Self::Out { loop {} } |
1380 | } | 1344 | } |
1381 | impl<'a, T> IntoIterator for &'a [T] { | 1345 | impl<'a, T> IntoIterator for &'a [T] { |
1382 | type Out = &'a T; | 1346 | type Out = &'a T; |
1383 | fn into_iter(self) -> Self::Out {} | 1347 | fn into_iter(self) -> Self::Out { loop {} } |
1384 | } | 1348 | } |
1385 | "#, | 1349 | "#, |
1386 | ); | 1350 | ); |
diff --git a/crates/hir_ty/src/tests/patterns.rs b/crates/hir_ty/src/tests/patterns.rs index 5adbe9c45..47aa30d2e 100644 --- a/crates/hir_ty/src/tests/patterns.rs +++ b/crates/hir_ty/src/tests/patterns.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | use expect_test::expect; | 1 | use expect_test::expect; |
2 | 2 | ||
3 | use super::{check_infer, check_infer_with_mismatches, check_mismatches, check_types}; | 3 | use super::{check, check_infer, check_infer_with_mismatches, check_types}; |
4 | 4 | ||
5 | #[test] | 5 | #[test] |
6 | fn infer_pattern() { | 6 | fn infer_pattern() { |
@@ -518,7 +518,7 @@ fn infer_generics_in_patterns() { | |||
518 | 518 | ||
519 | #[test] | 519 | #[test] |
520 | fn infer_const_pattern() { | 520 | fn infer_const_pattern() { |
521 | check_mismatches( | 521 | check( |
522 | r#" | 522 | r#" |
523 | enum Option<T> { None } | 523 | enum Option<T> { None } |
524 | use Option::None; | 524 | use Option::None; |
diff --git a/crates/hir_ty/src/tests/regression.rs b/crates/hir_ty/src/tests/regression.rs index 0f418ea49..8c5e8954c 100644 --- a/crates/hir_ty/src/tests/regression.rs +++ b/crates/hir_ty/src/tests/regression.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | use expect_test::expect; | 1 | use expect_test::expect; |
2 | 2 | ||
3 | use super::{check_infer, check_types}; | 3 | use super::{check_infer, check_no_mismatches, check_types}; |
4 | 4 | ||
5 | #[test] | 5 | #[test] |
6 | fn bug_484() { | 6 | fn bug_484() { |
@@ -422,20 +422,20 @@ fn issue_2683_chars_impl() { | |||
422 | pub struct Chars<'a> {} | 422 | pub struct Chars<'a> {} |
423 | impl<'a> Iterator for Chars<'a> { | 423 | impl<'a> Iterator for Chars<'a> { |
424 | type Item = char; | 424 | type Item = char; |
425 | fn next(&mut self) -> Option<char> {} | 425 | fn next(&mut self) -> Option<char> { loop {} } |
426 | } | 426 | } |
427 | 427 | ||
428 | fn test() { | 428 | fn test() { |
429 | let chars: Chars<'_>; | 429 | let chars: Chars<'_>; |
430 | (chars.next(), chars.nth(1)); | 430 | (chars.next(), chars.nth(1)); |
431 | } //^ (Option<char>, Option<char>) | 431 | } //^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (Option<char>, Option<char>) |
432 | "#, | 432 | "#, |
433 | ); | 433 | ); |
434 | } | 434 | } |
435 | 435 | ||
436 | #[test] | 436 | #[test] |
437 | fn issue_3642_bad_macro_stackover() { | 437 | fn issue_3642_bad_macro_stackover() { |
438 | check_types( | 438 | check_no_mismatches( |
439 | r#" | 439 | r#" |
440 | #[macro_export] | 440 | #[macro_export] |
441 | macro_rules! match_ast { | 441 | macro_rules! match_ast { |
@@ -452,7 +452,6 @@ macro_rules! match_ast { | |||
452 | 452 | ||
453 | fn main() { | 453 | fn main() { |
454 | let anchor = match_ast! { | 454 | let anchor = match_ast! { |
455 | //^ () | ||
456 | match parent { | 455 | match parent { |
457 | as => {}, | 456 | as => {}, |
458 | _ => return None | 457 | _ => return None |
@@ -956,7 +955,7 @@ trait IterTrait<'a, T: 'a>: Iterator<Item = &'a T> { | |||
956 | 955 | ||
957 | fn clone_iter<T>(s: Iter<T>) { | 956 | fn clone_iter<T>(s: Iter<T>) { |
958 | s.inner.clone_box(); | 957 | s.inner.clone_box(); |
959 | //^^^^^^^^^^^^^^^^^^^ () | 958 | //^^^^^^^^^^^^^^^^^^^ () |
960 | } | 959 | } |
961 | "#, | 960 | "#, |
962 | ) | 961 | ) |
diff --git a/crates/hir_ty/src/tests/simple.rs b/crates/hir_ty/src/tests/simple.rs index 108ff3179..b4bcc6d95 100644 --- a/crates/hir_ty/src/tests/simple.rs +++ b/crates/hir_ty/src/tests/simple.rs | |||
@@ -60,7 +60,7 @@ enum Nat { Succ(Self), Demo(Nat), Zero } | |||
60 | fn test() { | 60 | fn test() { |
61 | let foo: Nat = Nat::Zero; | 61 | let foo: Nat = Nat::Zero; |
62 | if let Nat::Succ(x) = foo { | 62 | if let Nat::Succ(x) = foo { |
63 | x | 63 | x; |
64 | } //^ Nat | 64 | } //^ Nat |
65 | } | 65 | } |
66 | "#, | 66 | "#, |
@@ -138,7 +138,7 @@ enum Option<T> { Some(T), None } | |||
138 | fn test() { | 138 | fn test() { |
139 | let foo: Option<f32> = None; | 139 | let foo: Option<f32> = None; |
140 | while let Option::Some(x) = foo { | 140 | while let Option::Some(x) = foo { |
141 | x | 141 | x; |
142 | } //^ f32 | 142 | } //^ f32 |
143 | } | 143 | } |
144 | "#, | 144 | "#, |
@@ -1745,7 +1745,7 @@ impl i32 { fn foo(&self) -> Foo { Foo } } | |||
1745 | fn main() { | 1745 | fn main() { |
1746 | let x: i32 = i32; | 1746 | let x: i32 = i32; |
1747 | x.foo(); | 1747 | x.foo(); |
1748 | //^ Foo | 1748 | //^^^^^^^ Foo |
1749 | }"#, | 1749 | }"#, |
1750 | ); | 1750 | ); |
1751 | } | 1751 | } |
@@ -1763,7 +1763,7 @@ fn main() { | |||
1763 | fn inner() {} | 1763 | fn inner() {} |
1764 | let x: i32 = i32; | 1764 | let x: i32 = i32; |
1765 | x.foo(); | 1765 | x.foo(); |
1766 | //^ Foo | 1766 | //^^^^^^^ Foo |
1767 | }"#, | 1767 | }"#, |
1768 | ); | 1768 | ); |
1769 | } | 1769 | } |
@@ -1781,7 +1781,7 @@ fn foo() -> &'static str { "" } | |||
1781 | 1781 | ||
1782 | fn main() { | 1782 | fn main() { |
1783 | foo(); | 1783 | foo(); |
1784 | //^ &str | 1784 | //^^^^^ &str |
1785 | }"#, | 1785 | }"#, |
1786 | ); | 1786 | ); |
1787 | } | 1787 | } |
@@ -1799,7 +1799,7 @@ fn foo() -> &'static str { "" } | |||
1799 | 1799 | ||
1800 | fn main() { | 1800 | fn main() { |
1801 | str::foo(); | 1801 | str::foo(); |
1802 | //^ u32 | 1802 | //^^^^^^^^^^ u32 |
1803 | }"#, | 1803 | }"#, |
1804 | ); | 1804 | ); |
1805 | } | 1805 | } |
@@ -1825,9 +1825,9 @@ mod d { | |||
1825 | 1825 | ||
1826 | fn main() { | 1826 | fn main() { |
1827 | d::foo(); | 1827 | d::foo(); |
1828 | //^ u8 | 1828 | //^^^^^^^^ u8 |
1829 | d::foo{a:0}; | 1829 | d::foo{a:0}; |
1830 | //^ u8 | 1830 | //^^^^^^^^^^^ foo |
1831 | }"#, | 1831 | }"#, |
1832 | ); | 1832 | ); |
1833 | } | 1833 | } |
@@ -2677,7 +2677,7 @@ fn prelude_2015() { | |||
2677 | //- /main.rs edition:2015 crate:main deps:core | 2677 | //- /main.rs edition:2015 crate:main deps:core |
2678 | fn f() { | 2678 | fn f() { |
2679 | Rust; | 2679 | Rust; |
2680 | //^ Rust | 2680 | //^^^^ Rust |
2681 | } | 2681 | } |
2682 | 2682 | ||
2683 | //- /core.rs crate:core | 2683 | //- /core.rs crate:core |
diff --git a/crates/hir_ty/src/tests/traits.rs b/crates/hir_ty/src/tests/traits.rs index 279a1354a..a0ddad570 100644 --- a/crates/hir_ty/src/tests/traits.rs +++ b/crates/hir_ty/src/tests/traits.rs | |||
@@ -1,6 +1,7 @@ | |||
1 | use cov_mark::check; | ||
1 | use expect_test::expect; | 2 | use expect_test::expect; |
2 | 3 | ||
3 | use super::{check_infer, check_infer_with_mismatches, check_types}; | 4 | use super::{check, check_infer, check_infer_with_mismatches, check_types}; |
4 | 5 | ||
5 | #[test] | 6 | #[test] |
6 | fn infer_await() { | 7 | fn infer_await() { |
@@ -285,7 +286,7 @@ mod ops { | |||
285 | 286 | ||
286 | #[test] | 287 | #[test] |
287 | fn infer_from_bound_1() { | 288 | fn infer_from_bound_1() { |
288 | check_infer( | 289 | check_types( |
289 | r#" | 290 | r#" |
290 | trait Trait<T> {} | 291 | trait Trait<T> {} |
291 | struct S<T>(T); | 292 | struct S<T>(T); |
@@ -293,99 +294,62 @@ impl<U> Trait<U> for S<U> {} | |||
293 | fn foo<T: Trait<u32>>(t: T) {} | 294 | fn foo<T: Trait<u32>>(t: T) {} |
294 | fn test() { | 295 | fn test() { |
295 | let s = S(unknown); | 296 | let s = S(unknown); |
297 | // ^^^^^^^ u32 | ||
296 | foo(s); | 298 | foo(s); |
297 | }"#, | 299 | }"#, |
298 | expect![[r#" | ||
299 | 85..86 't': T | ||
300 | 91..93 '{}': () | ||
301 | 104..143 '{ ...(s); }': () | ||
302 | 114..115 's': S<u32> | ||
303 | 118..119 'S': S<u32>(u32) -> S<u32> | ||
304 | 118..128 'S(unknown)': S<u32> | ||
305 | 120..127 'unknown': u32 | ||
306 | 134..137 'foo': fn foo<S<u32>>(S<u32>) | ||
307 | 134..140 'foo(s)': () | ||
308 | 138..139 's': S<u32> | ||
309 | "#]], | ||
310 | ); | 300 | ); |
311 | } | 301 | } |
312 | 302 | ||
313 | #[test] | 303 | #[test] |
314 | fn infer_from_bound_2() { | 304 | fn infer_from_bound_2() { |
315 | check_infer( | 305 | check_types( |
316 | r#" | 306 | r#" |
317 | trait Trait<T> {} | 307 | trait Trait<T> {} |
318 | struct S<T>(T); | 308 | struct S<T>(T); |
319 | impl<U> Trait<U> for S<U> {} | 309 | impl<U> Trait<U> for S<U> {} |
320 | fn foo<U, T: Trait<U>>(t: T) -> U {} | 310 | fn foo<U, T: Trait<U>>(t: T) -> U { loop {} } |
321 | fn test() { | 311 | fn test() { |
322 | let s = S(unknown); | 312 | let s = S(unknown); |
313 | // ^^^^^^^ u32 | ||
323 | let x: u32 = foo(s); | 314 | let x: u32 = foo(s); |
324 | }"#, | 315 | }"#, |
325 | expect![[r#" | ||
326 | 86..87 't': T | ||
327 | 97..99 '{}': () | ||
328 | 110..162 '{ ...(s); }': () | ||
329 | 120..121 's': S<u32> | ||
330 | 124..125 'S': S<u32>(u32) -> S<u32> | ||
331 | 124..134 'S(unknown)': S<u32> | ||
332 | 126..133 'unknown': u32 | ||
333 | 144..145 'x': u32 | ||
334 | 153..156 'foo': fn foo<u32, S<u32>>(S<u32>) -> u32 | ||
335 | 153..159 'foo(s)': u32 | ||
336 | 157..158 's': S<u32> | ||
337 | "#]], | ||
338 | ); | 316 | ); |
339 | } | 317 | } |
340 | 318 | ||
341 | #[test] | 319 | #[test] |
342 | fn trait_default_method_self_bound_implements_trait() { | 320 | fn trait_default_method_self_bound_implements_trait() { |
343 | cov_mark::check!(trait_self_implements_self); | 321 | cov_mark::check!(trait_self_implements_self); |
344 | check_infer( | 322 | check( |
345 | r#" | 323 | r#" |
346 | trait Trait { | 324 | trait Trait { |
347 | fn foo(&self) -> i64; | 325 | fn foo(&self) -> i64; |
348 | fn bar(&self) -> { | 326 | fn bar(&self) -> () { |
349 | let x = self.foo(); | 327 | self.foo(); |
328 | // ^^^^^^^^^^ type: i64 | ||
350 | } | 329 | } |
351 | }"#, | 330 | }"#, |
352 | expect![[r#" | ||
353 | 26..30 'self': &Self | ||
354 | 52..56 'self': &Self | ||
355 | 61..96 '{ ... }': () | ||
356 | 75..76 'x': i64 | ||
357 | 79..83 'self': &Self | ||
358 | 79..89 'self.foo()': i64 | ||
359 | "#]], | ||
360 | ); | 331 | ); |
361 | } | 332 | } |
362 | 333 | ||
363 | #[test] | 334 | #[test] |
364 | fn trait_default_method_self_bound_implements_super_trait() { | 335 | fn trait_default_method_self_bound_implements_super_trait() { |
365 | check_infer( | 336 | check( |
366 | r#" | 337 | r#" |
367 | trait SuperTrait { | 338 | trait SuperTrait { |
368 | fn foo(&self) -> i64; | 339 | fn foo(&self) -> i64; |
369 | } | 340 | } |
370 | trait Trait: SuperTrait { | 341 | trait Trait: SuperTrait { |
371 | fn bar(&self) -> { | 342 | fn bar(&self) -> () { |
372 | let x = self.foo(); | 343 | self.foo(); |
344 | // ^^^^^^^^^^ type: i64 | ||
373 | } | 345 | } |
374 | }"#, | 346 | }"#, |
375 | expect![[r#" | ||
376 | 31..35 'self': &Self | ||
377 | 85..89 'self': &Self | ||
378 | 94..129 '{ ... }': () | ||
379 | 108..109 'x': i64 | ||
380 | 112..116 'self': &Self | ||
381 | 112..122 'self.foo()': i64 | ||
382 | "#]], | ||
383 | ); | 347 | ); |
384 | } | 348 | } |
385 | 349 | ||
386 | #[test] | 350 | #[test] |
387 | fn infer_project_associated_type() { | 351 | fn infer_project_associated_type() { |
388 | check_infer( | 352 | check_types( |
389 | r#" | 353 | r#" |
390 | trait Iterable { | 354 | trait Iterable { |
391 | type Item; | 355 | type Item; |
@@ -394,89 +358,62 @@ struct S; | |||
394 | impl Iterable for S { type Item = u32; } | 358 | impl Iterable for S { type Item = u32; } |
395 | fn test<T: Iterable>() { | 359 | fn test<T: Iterable>() { |
396 | let x: <S as Iterable>::Item = 1; | 360 | let x: <S as Iterable>::Item = 1; |
397 | let y: <T as Iterable>::Item = no_matter; | 361 | // ^ u32 |
398 | let z: T::Item = no_matter; | 362 | let y: <T as Iterable>::Item = u; |
399 | let a: <T>::Item = no_matter; | 363 | // ^ Iterable::Item<T> |
364 | let z: T::Item = u; | ||
365 | // ^ Iterable::Item<T> | ||
366 | let a: <T>::Item = u; | ||
367 | // ^ Iterable::Item<T> | ||
400 | }"#, | 368 | }"#, |
401 | expect![[r#" | ||
402 | 108..261 '{ ...ter; }': () | ||
403 | 118..119 'x': u32 | ||
404 | 145..146 '1': u32 | ||
405 | 156..157 'y': Iterable::Item<T> | ||
406 | 183..192 'no_matter': Iterable::Item<T> | ||
407 | 202..203 'z': Iterable::Item<T> | ||
408 | 215..224 'no_matter': Iterable::Item<T> | ||
409 | 234..235 'a': Iterable::Item<T> | ||
410 | 249..258 'no_matter': Iterable::Item<T> | ||
411 | "#]], | ||
412 | ); | 369 | ); |
413 | } | 370 | } |
414 | 371 | ||
415 | #[test] | 372 | #[test] |
416 | fn infer_return_associated_type() { | 373 | fn infer_return_associated_type() { |
417 | check_infer( | 374 | check_types( |
418 | r#" | 375 | r#" |
419 | trait Iterable { | 376 | trait Iterable { |
420 | type Item; | 377 | type Item; |
421 | } | 378 | } |
422 | struct S; | 379 | struct S; |
423 | impl Iterable for S { type Item = u32; } | 380 | impl Iterable for S { type Item = u32; } |
424 | fn foo1<T: Iterable>(t: T) -> T::Item {} | 381 | fn foo1<T: Iterable>(t: T) -> T::Item { loop {} } |
425 | fn foo2<T: Iterable>(t: T) -> <T as Iterable>::Item {} | 382 | fn foo2<T: Iterable>(t: T) -> <T as Iterable>::Item { loop {} } |
426 | fn foo3<T: Iterable>(t: T) -> <T>::Item {} | 383 | fn foo3<T: Iterable>(t: T) -> <T>::Item { loop {} } |
427 | fn test() { | 384 | fn test() { |
428 | let x = foo1(S); | 385 | foo1(S); |
429 | let y = foo2(S); | 386 | // ^^^^^^^ u32 |
430 | let z = foo3(S); | 387 | foo2(S); |
388 | // ^^^^^^^ u32 | ||
389 | foo3(S); | ||
390 | // ^^^^^^^ u32 | ||
431 | }"#, | 391 | }"#, |
432 | expect![[r#" | ||
433 | 106..107 't': T | ||
434 | 123..125 '{}': () | ||
435 | 147..148 't': T | ||
436 | 178..180 '{}': () | ||
437 | 202..203 't': T | ||
438 | 221..223 '{}': () | ||
439 | 234..300 '{ ...(S); }': () | ||
440 | 244..245 'x': u32 | ||
441 | 248..252 'foo1': fn foo1<S>(S) -> <S as Iterable>::Item | ||
442 | 248..255 'foo1(S)': u32 | ||
443 | 253..254 'S': S | ||
444 | 265..266 'y': u32 | ||
445 | 269..273 'foo2': fn foo2<S>(S) -> <S as Iterable>::Item | ||
446 | 269..276 'foo2(S)': u32 | ||
447 | 274..275 'S': S | ||
448 | 286..287 'z': u32 | ||
449 | 290..294 'foo3': fn foo3<S>(S) -> <S as Iterable>::Item | ||
450 | 290..297 'foo3(S)': u32 | ||
451 | 295..296 'S': S | ||
452 | "#]], | ||
453 | ); | 392 | ); |
454 | } | 393 | } |
455 | 394 | ||
456 | #[test] | 395 | #[test] |
457 | fn infer_associated_type_bound() { | 396 | fn infer_associated_type_bound() { |
458 | check_infer( | 397 | check_types( |
459 | r#" | 398 | r#" |
460 | trait Iterable { | 399 | trait Iterable { |
461 | type Item; | 400 | type Item; |
462 | } | 401 | } |
463 | fn test<T: Iterable<Item=u32>>() { | 402 | fn test<T: Iterable<Item=u32>>() { |
464 | let y: T::Item = unknown; | 403 | let y: T::Item = unknown; |
404 | // ^^^^^^^ u32 | ||
465 | }"#, | 405 | }"#, |
466 | expect![[r#" | ||
467 | 67..100 '{ ...own; }': () | ||
468 | 77..78 'y': u32 | ||
469 | 90..97 'unknown': u32 | ||
470 | "#]], | ||
471 | ); | 406 | ); |
472 | } | 407 | } |
473 | 408 | ||
474 | #[test] | 409 | #[test] |
475 | fn infer_const_body() { | 410 | fn infer_const_body() { |
411 | // FIXME make check_types work with other bodies | ||
476 | check_infer( | 412 | check_infer( |
477 | r#" | 413 | r#" |
478 | const A: u32 = 1 + 1; | 414 | const A: u32 = 1 + 1; |
479 | static B: u64 = { let x = 1; x };"#, | 415 | static B: u64 = { let x = 1; x }; |
416 | "#, | ||
480 | expect![[r#" | 417 | expect![[r#" |
481 | 15..16 '1': u32 | 418 | 15..16 '1': u32 |
482 | 15..20 '1 + 1': u32 | 419 | 15..20 '1 + 1': u32 |
@@ -637,12 +574,12 @@ impl<T> core::ops::Deref for Arc<T> { | |||
637 | 574 | ||
638 | struct S; | 575 | struct S; |
639 | impl S { | 576 | impl S { |
640 | fn foo(&self) -> u128 {} | 577 | fn foo(&self) -> u128 { 0 } |
641 | } | 578 | } |
642 | 579 | ||
643 | fn test(s: Arc<S>) { | 580 | fn test(s: Arc<S>) { |
644 | (*s, s.foo()); | 581 | (*s, s.foo()); |
645 | } //^ (S, u128) | 582 | } //^^^^^^^^^^^^^ (S, u128) |
646 | "#, | 583 | "#, |
647 | ); | 584 | ); |
648 | } | 585 | } |
@@ -653,7 +590,7 @@ fn deref_trait_with_inference_var() { | |||
653 | r#" | 590 | r#" |
654 | //- minicore: deref | 591 | //- minicore: deref |
655 | struct Arc<T>; | 592 | struct Arc<T>; |
656 | fn new_arc<T>() -> Arc<T> {} | 593 | fn new_arc<T>() -> Arc<T> { Arc } |
657 | impl<T> core::ops::Deref for Arc<T> { | 594 | impl<T> core::ops::Deref for Arc<T> { |
658 | type Target = T; | 595 | type Target = T; |
659 | } | 596 | } |
@@ -663,8 +600,8 @@ fn foo(a: Arc<S>) {} | |||
663 | 600 | ||
664 | fn test() { | 601 | fn test() { |
665 | let a = new_arc(); | 602 | let a = new_arc(); |
666 | let b = (*a); | 603 | let b = *a; |
667 | //^ S | 604 | //^^ S |
668 | foo(a); | 605 | foo(a); |
669 | } | 606 | } |
670 | "#, | 607 | "#, |
@@ -684,7 +621,7 @@ impl core::ops::Deref for S { | |||
684 | 621 | ||
685 | fn test(s: S) { | 622 | fn test(s: S) { |
686 | s.foo(); | 623 | s.foo(); |
687 | } //^ {unknown} | 624 | } //^^^^^^^ {unknown} |
688 | "#, | 625 | "#, |
689 | ); | 626 | ); |
690 | } | 627 | } |
@@ -701,12 +638,12 @@ impl<T: ?Sized> core::ops::Deref for Arc<T> { | |||
701 | 638 | ||
702 | struct S; | 639 | struct S; |
703 | impl S { | 640 | impl S { |
704 | fn foo(&self) -> u128 {} | 641 | fn foo(&self) -> u128 { 0 } |
705 | } | 642 | } |
706 | 643 | ||
707 | fn test(s: Arc<S>) { | 644 | fn test(s: Arc<S>) { |
708 | (*s, s.foo()); | 645 | (*s, s.foo()); |
709 | } //^ (S, u128) | 646 | } //^^^^^^^^^^^^^ (S, u128) |
710 | "#, | 647 | "#, |
711 | ); | 648 | ); |
712 | } | 649 | } |
@@ -720,11 +657,11 @@ struct S; | |||
720 | trait Trait<T> {} | 657 | trait Trait<T> {} |
721 | impl Trait<u32> for S {} | 658 | impl Trait<u32> for S {} |
722 | 659 | ||
723 | fn foo<T: Trait<U>, U>(t: T) -> U {} | 660 | fn foo<T: Trait<U>, U>(t: T) -> U { loop {} } |
724 | 661 | ||
725 | fn test(s: S) { | 662 | fn test(s: S) { |
726 | (foo(s)); | 663 | foo(s); |
727 | } //^ u32 | 664 | } //^^^^^^ u32 |
728 | "#, | 665 | "#, |
729 | ); | 666 | ); |
730 | } | 667 | } |
@@ -741,12 +678,12 @@ impl Trait<isize> for S {} | |||
741 | 678 | ||
742 | struct O; | 679 | struct O; |
743 | impl O { | 680 | impl O { |
744 | fn foo<T: Trait<U>, U>(&self, t: T) -> U {} | 681 | fn foo<T: Trait<U>, U>(&self, t: T) -> U { loop {} } |
745 | } | 682 | } |
746 | 683 | ||
747 | fn test() { | 684 | fn test() { |
748 | O.foo(S); | 685 | O.foo(S); |
749 | } //^ isize | 686 | } //^^^^^^^^ isize |
750 | "#, | 687 | "#, |
751 | ); | 688 | ); |
752 | } | 689 | } |
@@ -761,12 +698,12 @@ trait Trait<T> {} | |||
761 | impl Trait<i64> for S {} | 698 | impl Trait<i64> for S {} |
762 | 699 | ||
763 | impl S { | 700 | impl S { |
764 | fn foo<U>(&self) -> U where Self: Trait<U> {} | 701 | fn foo<U>(&self) -> U where Self: Trait<U> { loop {} } |
765 | } | 702 | } |
766 | 703 | ||
767 | fn test() { | 704 | fn test() { |
768 | S.foo(); | 705 | S.foo(); |
769 | } //^ i64 | 706 | } //^^^^^^^ i64 |
770 | "#, | 707 | "#, |
771 | ); | 708 | ); |
772 | } | 709 | } |
@@ -782,12 +719,12 @@ impl Trait<&str> for S {} | |||
782 | 719 | ||
783 | struct O<T>; | 720 | struct O<T>; |
784 | impl<U, T: Trait<U>> O<T> { | 721 | impl<U, T: Trait<U>> O<T> { |
785 | fn foo(&self) -> U {} | 722 | fn foo(&self) -> U { loop {} } |
786 | } | 723 | } |
787 | 724 | ||
788 | fn test(o: O<S>) { | 725 | fn test(o: O<S>) { |
789 | o.foo(); | 726 | o.foo(); |
790 | } //^ &str | 727 | } //^^^^^^^ &str |
791 | "#, | 728 | "#, |
792 | ); | 729 | ); |
793 | } | 730 | } |
@@ -802,7 +739,7 @@ struct S; | |||
802 | impl Clone for S {} | 739 | impl Clone for S {} |
803 | impl<T> Trait for T where T: Clone {} | 740 | impl<T> Trait for T where T: Clone {} |
804 | fn test<T: Clone>(t: T) { t.foo(); } | 741 | fn test<T: Clone>(t: T) { t.foo(); } |
805 | //^ u128 | 742 | //^^^^^^^ u128 |
806 | "#, | 743 | "#, |
807 | ); | 744 | ); |
808 | } | 745 | } |
@@ -818,7 +755,7 @@ struct S; | |||
818 | impl Clone for S {} | 755 | impl Clone for S {} |
819 | impl<T> Trait for T where T: Clone {} | 756 | impl<T> Trait for T where T: Clone {} |
820 | fn test<T>(t: T) { t.foo(); } | 757 | fn test<T>(t: T) { t.foo(); } |
821 | //^ {unknown} | 758 | //^^^^^^^ {unknown} |
822 | "#, | 759 | "#, |
823 | ); | 760 | ); |
824 | } | 761 | } |
@@ -831,7 +768,7 @@ trait Trait { fn foo(self) -> u128; } | |||
831 | struct S; | 768 | struct S; |
832 | impl Trait for S {} | 769 | impl Trait for S {} |
833 | fn test<T: Trait>(t: T) { t.foo(); } | 770 | fn test<T: Trait>(t: T) { t.foo(); } |
834 | //^ u128 | 771 | //^^^^^^^ u128 |
835 | "#, | 772 | "#, |
836 | ); | 773 | ); |
837 | } | 774 | } |
@@ -844,7 +781,7 @@ trait Trait { fn foo(self) -> u128; } | |||
844 | struct S; | 781 | struct S; |
845 | impl Trait for S {} | 782 | impl Trait for S {} |
846 | fn test<T>(t: T) { t.foo(); } | 783 | fn test<T>(t: T) { t.foo(); } |
847 | //^ {unknown} | 784 | //^^^^^^^ {unknown} |
848 | "#, | 785 | "#, |
849 | ); | 786 | ); |
850 | } | 787 | } |
@@ -858,8 +795,8 @@ trait Trait {} | |||
858 | impl<T> core::ops::Deref for T where T: Trait { | 795 | impl<T> core::ops::Deref for T where T: Trait { |
859 | type Target = i128; | 796 | type Target = i128; |
860 | } | 797 | } |
861 | fn test<T: Trait>(t: T) { (*t); } | 798 | fn test<T: Trait>(t: T) { *t; } |
862 | //^ i128 | 799 | //^^ i128 |
863 | "#, | 800 | "#, |
864 | ); | 801 | ); |
865 | } | 802 | } |
@@ -1380,12 +1317,12 @@ fn error_bound_chalk() { | |||
1380 | check_types( | 1317 | check_types( |
1381 | r#" | 1318 | r#" |
1382 | trait Trait { | 1319 | trait Trait { |
1383 | fn foo(&self) -> u32 {} | 1320 | fn foo(&self) -> u32 { 0 } |
1384 | } | 1321 | } |
1385 | 1322 | ||
1386 | fn test(x: (impl Trait + UnknownTrait)) { | 1323 | fn test(x: (impl Trait + UnknownTrait)) { |
1387 | x.foo(); | 1324 | x.foo(); |
1388 | } //^ u32 | 1325 | } //^^^^^^^ u32 |
1389 | "#, | 1326 | "#, |
1390 | ); | 1327 | ); |
1391 | } | 1328 | } |
@@ -1476,7 +1413,7 @@ trait Clone { | |||
1476 | fn api_walkthrough() { | 1413 | fn api_walkthrough() { |
1477 | for node in foo() { | 1414 | for node in foo() { |
1478 | node.clone(); | 1415 | node.clone(); |
1479 | } //^ {unknown} | 1416 | } //^^^^^^^^^^^^ {unknown} |
1480 | } | 1417 | } |
1481 | "#, | 1418 | "#, |
1482 | ); | 1419 | ); |
@@ -1513,13 +1450,13 @@ fn where_clause_trait_in_scope_for_method_resolution() { | |||
1513 | r#" | 1450 | r#" |
1514 | mod foo { | 1451 | mod foo { |
1515 | trait Trait { | 1452 | trait Trait { |
1516 | fn foo(&self) -> u32 {} | 1453 | fn foo(&self) -> u32 { 0 } |
1517 | } | 1454 | } |
1518 | } | 1455 | } |
1519 | 1456 | ||
1520 | fn test<T: foo::Trait>(x: T) { | 1457 | fn test<T: foo::Trait>(x: T) { |
1521 | x.foo(); | 1458 | x.foo(); |
1522 | } //^ u32 | 1459 | } //^^^^^^^ u32 |
1523 | "#, | 1460 | "#, |
1524 | ); | 1461 | ); |
1525 | } | 1462 | } |
@@ -1982,7 +1919,7 @@ fn fn_item_fn_trait() { | |||
1982 | //- minicore: fn | 1919 | //- minicore: fn |
1983 | struct S; | 1920 | struct S; |
1984 | 1921 | ||
1985 | fn foo() -> S {} | 1922 | fn foo() -> S { S } |
1986 | 1923 | ||
1987 | fn takes_closure<U, F: FnOnce() -> U>(f: F) -> U { f() } | 1924 | fn takes_closure<U, F: FnOnce() -> U>(f: F) -> U { f() } |
1988 | 1925 | ||
@@ -2009,7 +1946,7 @@ trait Trait2 { | |||
2009 | fn test<T: Trait>() where T::Item: Trait2 { | 1946 | fn test<T: Trait>() where T::Item: Trait2 { |
2010 | let x: T::Item = no_matter; | 1947 | let x: T::Item = no_matter; |
2011 | x.foo(); | 1948 | x.foo(); |
2012 | } //^ u32 | 1949 | } //^^^^^^^ u32 |
2013 | "#, | 1950 | "#, |
2014 | ); | 1951 | ); |
2015 | } | 1952 | } |
@@ -2029,7 +1966,7 @@ trait Trait2 { | |||
2029 | fn test<T, U>() where T::Item: Trait2, T: Trait<U::Item>, U: Trait<()> { | 1966 | fn test<T, U>() where T::Item: Trait2, T: Trait<U::Item>, U: Trait<()> { |
2030 | let x: T::Item = no_matter; | 1967 | let x: T::Item = no_matter; |
2031 | x.foo(); | 1968 | x.foo(); |
2032 | } //^ u32 | 1969 | } //^^^^^^^ u32 |
2033 | "#, | 1970 | "#, |
2034 | ); | 1971 | ); |
2035 | } | 1972 | } |
@@ -2092,7 +2029,7 @@ impl Trait for S { | |||
2092 | 2029 | ||
2093 | fn test() { | 2030 | fn test() { |
2094 | S.f(); | 2031 | S.f(); |
2095 | } //^ u32 | 2032 | } //^^^^^ u32 |
2096 | "#, | 2033 | "#, |
2097 | ); | 2034 | ); |
2098 | } | 2035 | } |
@@ -2120,7 +2057,7 @@ where | |||
2120 | 2057 | ||
2121 | fn foo<I: Interner>(interner: &I, t: Ty<I>) { | 2058 | fn foo<I: Interner>(interner: &I, t: Ty<I>) { |
2122 | fold(interner, t); | 2059 | fold(interner, t); |
2123 | } //^ Ty<I> | 2060 | } //^^^^^^^^^^^^^^^^^ Ty<I> |
2124 | "#, | 2061 | "#, |
2125 | ); | 2062 | ); |
2126 | } | 2063 | } |
@@ -2139,7 +2076,7 @@ impl Trait<Self> for S {} | |||
2139 | 2076 | ||
2140 | fn test() { | 2077 | fn test() { |
2141 | S.foo(); | 2078 | S.foo(); |
2142 | } //^ () | 2079 | } //^^^^^^^ () |
2143 | "#, | 2080 | "#, |
2144 | ); | 2081 | ); |
2145 | } | 2082 | } |
@@ -2158,7 +2095,7 @@ impl Trait for S<Self> {} | |||
2158 | 2095 | ||
2159 | fn test() { | 2096 | fn test() { |
2160 | S.foo(); | 2097 | S.foo(); |
2161 | } //^ {unknown} | 2098 | } //^^^^^^^ {unknown} |
2162 | "#, | 2099 | "#, |
2163 | ); | 2100 | ); |
2164 | } | 2101 | } |
@@ -2176,7 +2113,7 @@ trait Trait2<T> {} | |||
2176 | 2113 | ||
2177 | fn test<T: Trait>() where T: Trait2<T::Item> { | 2114 | fn test<T: Trait>() where T: Trait2<T::Item> { |
2178 | let x: T::Item = no_matter; | 2115 | let x: T::Item = no_matter; |
2179 | } //^ {unknown} | 2116 | } //^^^^^^^^^ {unknown} |
2180 | "#, | 2117 | "#, |
2181 | ); | 2118 | ); |
2182 | } | 2119 | } |
@@ -2193,7 +2130,7 @@ trait Trait<T> { | |||
2193 | 2130 | ||
2194 | fn test<T, U>() where T: Trait<U::Item>, U: Trait<T::Item> { | 2131 | fn test<T, U>() where T: Trait<U::Item>, U: Trait<T::Item> { |
2195 | let x: T::Item = no_matter; | 2132 | let x: T::Item = no_matter; |
2196 | } //^ {unknown} | 2133 | } //^^^^^^^^^ {unknown} |
2197 | "#, | 2134 | "#, |
2198 | ); | 2135 | ); |
2199 | } | 2136 | } |
@@ -2211,7 +2148,7 @@ trait Trait { | |||
2211 | 2148 | ||
2212 | fn test<T>() where T: Trait<OtherItem = T::Item> { | 2149 | fn test<T>() where T: Trait<OtherItem = T::Item> { |
2213 | let x: T::Item = no_matter; | 2150 | let x: T::Item = no_matter; |
2214 | } //^ Trait::Item<T> | 2151 | } //^^^^^^^^^ Trait::Item<T> |
2215 | "#, | 2152 | "#, |
2216 | ); | 2153 | ); |
2217 | } | 2154 | } |
@@ -2243,7 +2180,7 @@ fn test<T>(t: T) where T: UnificationStoreMut { | |||
2243 | t.push(x); | 2180 | t.push(x); |
2244 | let y: Key<T>; | 2181 | let y: Key<T>; |
2245 | (x, y); | 2182 | (x, y); |
2246 | } //^ (UnificationStoreBase::Key<T>, UnificationStoreBase::Key<T>) | 2183 | } //^^^^^^ (UnificationStoreBase::Key<T>, UnificationStoreBase::Key<T>) |
2247 | "#, | 2184 | "#, |
2248 | ); | 2185 | ); |
2249 | } | 2186 | } |
@@ -2268,7 +2205,7 @@ impl<T: Iterator> Iterator for S<T> { | |||
2268 | fn test<I: Iterator<Item: OtherTrait<u32>>>() { | 2205 | fn test<I: Iterator<Item: OtherTrait<u32>>>() { |
2269 | let x: <S<I> as Iterator>::Item; | 2206 | let x: <S<I> as Iterator>::Item; |
2270 | x.foo(); | 2207 | x.foo(); |
2271 | } //^ u32 | 2208 | } //^^^^^^^ u32 |
2272 | "#, | 2209 | "#, |
2273 | ); | 2210 | ); |
2274 | } | 2211 | } |
@@ -2470,7 +2407,7 @@ impl<T: Trait> Trait for S<T> { | |||
2470 | fn test<T: Trait>() { | 2407 | fn test<T: Trait>() { |
2471 | let y: <S<T> as Trait>::Item = no_matter; | 2408 | let y: <S<T> as Trait>::Item = no_matter; |
2472 | y.foo(); | 2409 | y.foo(); |
2473 | } //^ u32 | 2410 | } //^^^^^^^ u32 |
2474 | "#, | 2411 | "#, |
2475 | ); | 2412 | ); |
2476 | } | 2413 | } |
@@ -2490,7 +2427,7 @@ trait Trait { | |||
2490 | 2427 | ||
2491 | fn test(x: Box<dyn Trait>) { | 2428 | fn test(x: Box<dyn Trait>) { |
2492 | x.foo(); | 2429 | x.foo(); |
2493 | } //^ () | 2430 | } //^^^^^^^ () |
2494 | "#, | 2431 | "#, |
2495 | ); | 2432 | ); |
2496 | } | 2433 | } |
@@ -2509,7 +2446,7 @@ impl ToOwned for str { | |||
2509 | } | 2446 | } |
2510 | fn test() { | 2447 | fn test() { |
2511 | "foo".to_owned(); | 2448 | "foo".to_owned(); |
2512 | } //^ String | 2449 | } //^^^^^^^^^^^^^^^^ String |
2513 | "#, | 2450 | "#, |
2514 | ); | 2451 | ); |
2515 | } | 2452 | } |
@@ -2649,7 +2586,7 @@ impl<T:A> B for T { | |||
2649 | 2586 | ||
2650 | fn main() { | 2587 | fn main() { |
2651 | Bar::foo(); | 2588 | Bar::foo(); |
2652 | } //^ Foo | 2589 | } //^^^^^^^^^^ Foo |
2653 | "#, | 2590 | "#, |
2654 | ); | 2591 | ); |
2655 | } | 2592 | } |
@@ -3002,7 +2939,7 @@ fn test() { | |||
3002 | S.get(1); | 2939 | S.get(1); |
3003 | //^^^^^^^^ u128 | 2940 | //^^^^^^^^ u128 |
3004 | S.get(1.); | 2941 | S.get(1.); |
3005 | //^^^^^^^^ f32 | 2942 | //^^^^^^^^^ f32 |
3006 | } | 2943 | } |
3007 | "#, | 2944 | "#, |
3008 | ); | 2945 | ); |
@@ -3477,14 +3414,12 @@ trait Convert { | |||
3477 | fn new() -> Self; | 3414 | fn new() -> Self; |
3478 | } | 3415 | } |
3479 | impl Convert for u32 { | 3416 | impl Convert for u32 { |
3480 | fn new() -> Self { | 3417 | fn new() -> Self { 0 } |
3481 | 0 | ||
3482 | } | ||
3483 | } | 3418 | } |
3484 | 3419 | ||
3485 | async fn get_accounts() -> Result<u32, ()> { | 3420 | async fn get_accounts() -> Result<u32, ()> { |
3486 | let ret = Fooey.collect(); | 3421 | let ret = Fooey.collect(); |
3487 | // ^ u32 | 3422 | // ^^^^^^^^^^^^^^^ u32 |
3488 | Ok(ret) | 3423 | Ok(ret) |
3489 | } | 3424 | } |
3490 | "#, | 3425 | "#, |
@@ -3493,6 +3428,7 @@ async fn get_accounts() -> Result<u32, ()> { | |||
3493 | 3428 | ||
3494 | #[test] | 3429 | #[test] |
3495 | fn local_impl_1() { | 3430 | fn local_impl_1() { |
3431 | check!(block_local_impls); | ||
3496 | check_types( | 3432 | check_types( |
3497 | r#" | 3433 | r#" |
3498 | trait Trait<T> { | 3434 | trait Trait<T> { |
@@ -3502,7 +3438,7 @@ trait Trait<T> { | |||
3502 | fn test() { | 3438 | fn test() { |
3503 | struct S; | 3439 | struct S; |
3504 | impl Trait<u32> for S { | 3440 | impl Trait<u32> for S { |
3505 | fn foo(&self) { 0 } | 3441 | fn foo(&self) -> u32 { 0 } |
3506 | } | 3442 | } |
3507 | 3443 | ||
3508 | S.foo(); | 3444 | S.foo(); |
@@ -3514,6 +3450,7 @@ fn test() { | |||
3514 | 3450 | ||
3515 | #[test] | 3451 | #[test] |
3516 | fn local_impl_2() { | 3452 | fn local_impl_2() { |
3453 | check!(block_local_impls); | ||
3517 | check_types( | 3454 | check_types( |
3518 | r#" | 3455 | r#" |
3519 | struct S; | 3456 | struct S; |
@@ -3523,7 +3460,7 @@ fn test() { | |||
3523 | fn foo(&self) -> T; | 3460 | fn foo(&self) -> T; |
3524 | } | 3461 | } |
3525 | impl Trait<u32> for S { | 3462 | impl Trait<u32> for S { |
3526 | fn foo(&self) { 0 } | 3463 | fn foo(&self) -> u32 { 0 } |
3527 | } | 3464 | } |
3528 | 3465 | ||
3529 | S.foo(); | 3466 | S.foo(); |
@@ -3535,6 +3472,7 @@ fn test() { | |||
3535 | 3472 | ||
3536 | #[test] | 3473 | #[test] |
3537 | fn local_impl_3() { | 3474 | fn local_impl_3() { |
3475 | check!(block_local_impls); | ||
3538 | check_types( | 3476 | check_types( |
3539 | r#" | 3477 | r#" |
3540 | trait Trait<T> { | 3478 | trait Trait<T> { |
@@ -3547,7 +3485,7 @@ fn test() { | |||
3547 | struct S2; | 3485 | struct S2; |
3548 | 3486 | ||
3549 | impl Trait<S1> for S2 { | 3487 | impl Trait<S1> for S2 { |
3550 | fn foo(&self) { S1 } | 3488 | fn foo(&self) -> S1 { S1 } |
3551 | } | 3489 | } |
3552 | 3490 | ||
3553 | S2.foo(); | 3491 | S2.foo(); |