diff options
author | Seivan Heidari <[email protected]> | 2019-11-28 07:19:14 +0000 |
---|---|---|
committer | Seivan Heidari <[email protected]> | 2019-11-28 07:19:14 +0000 |
commit | 18a0937585b836ec5ed054b9ae48e0156ab6d9ef (patch) | |
tree | 9de2c0267ddcc00df717f90034d0843d751a851b /crates/ra_hir_ty/src/tests.rs | |
parent | a7394b44c870f585eacfeb3036a33471aff49ff8 (diff) | |
parent | 484acc8a61d599662ed63a4cbda091d38a982551 (diff) |
Merge branch 'master' of https://github.com/rust-analyzer/rust-analyzer into feature/themes
Diffstat (limited to 'crates/ra_hir_ty/src/tests.rs')
-rw-r--r-- | crates/ra_hir_ty/src/tests.rs | 4958 |
1 files changed, 4958 insertions, 0 deletions
diff --git a/crates/ra_hir_ty/src/tests.rs b/crates/ra_hir_ty/src/tests.rs new file mode 100644 index 000000000..c8461b447 --- /dev/null +++ b/crates/ra_hir_ty/src/tests.rs | |||
@@ -0,0 +1,4958 @@ | |||
1 | mod never_type; | ||
2 | mod coercion; | ||
3 | |||
4 | use std::fmt::Write; | ||
5 | use std::sync::Arc; | ||
6 | |||
7 | use hir_def::{ | ||
8 | body::BodySourceMap, db::DefDatabase, nameres::CrateDefMap, AssocItemId, DefWithBodyId, | ||
9 | LocalModuleId, Lookup, ModuleDefId, | ||
10 | }; | ||
11 | use hir_expand::Source; | ||
12 | use insta::assert_snapshot; | ||
13 | use ra_db::{fixture::WithFixture, salsa::Database, FilePosition, SourceDatabase}; | ||
14 | use ra_syntax::{ | ||
15 | algo, | ||
16 | ast::{self, AstNode}, | ||
17 | }; | ||
18 | use test_utils::covers; | ||
19 | |||
20 | use crate::{db::HirDatabase, display::HirDisplay, test_db::TestDB, InferenceResult}; | ||
21 | |||
22 | // These tests compare the inference results for all expressions in a file | ||
23 | // against snapshots of the expected results using insta. Use cargo-insta to | ||
24 | // update the snapshots. | ||
25 | |||
26 | #[test] | ||
27 | fn cfg_impl_block() { | ||
28 | let (db, pos) = TestDB::with_position( | ||
29 | r#" | ||
30 | //- /main.rs crate:main deps:foo cfg:test | ||
31 | use foo::S as T; | ||
32 | struct S; | ||
33 | |||
34 | #[cfg(test)] | ||
35 | impl S { | ||
36 | fn foo1(&self) -> i32 { 0 } | ||
37 | } | ||
38 | |||
39 | #[cfg(not(test))] | ||
40 | impl S { | ||
41 | fn foo2(&self) -> i32 { 0 } | ||
42 | } | ||
43 | |||
44 | fn test() { | ||
45 | let t = (S.foo1(), S.foo2(), T.foo3(), T.foo4()); | ||
46 | t<|>; | ||
47 | } | ||
48 | |||
49 | //- /foo.rs crate:foo | ||
50 | struct S; | ||
51 | |||
52 | #[cfg(not(test))] | ||
53 | impl S { | ||
54 | fn foo3(&self) -> i32 { 0 } | ||
55 | } | ||
56 | |||
57 | #[cfg(test)] | ||
58 | impl S { | ||
59 | fn foo4(&self) -> i32 { 0 } | ||
60 | } | ||
61 | "#, | ||
62 | ); | ||
63 | assert_eq!("(i32, {unknown}, i32, {unknown})", type_at_pos(&db, pos)); | ||
64 | } | ||
65 | |||
66 | #[test] | ||
67 | fn infer_await() { | ||
68 | let (db, pos) = TestDB::with_position( | ||
69 | r#" | ||
70 | //- /main.rs crate:main deps:std | ||
71 | |||
72 | struct IntFuture; | ||
73 | |||
74 | impl Future for IntFuture { | ||
75 | type Output = u64; | ||
76 | } | ||
77 | |||
78 | fn test() { | ||
79 | let r = IntFuture; | ||
80 | let v = r.await; | ||
81 | v<|>; | ||
82 | } | ||
83 | |||
84 | //- /std.rs crate:std | ||
85 | #[prelude_import] use future::*; | ||
86 | mod future { | ||
87 | trait Future { | ||
88 | type Output; | ||
89 | } | ||
90 | } | ||
91 | |||
92 | "#, | ||
93 | ); | ||
94 | assert_eq!("u64", type_at_pos(&db, pos)); | ||
95 | } | ||
96 | |||
97 | #[test] | ||
98 | fn infer_box() { | ||
99 | let (db, pos) = TestDB::with_position( | ||
100 | r#" | ||
101 | //- /main.rs crate:main deps:std | ||
102 | |||
103 | fn test() { | ||
104 | let x = box 1; | ||
105 | let t = (x, box x, box &1, box [1]); | ||
106 | t<|>; | ||
107 | } | ||
108 | |||
109 | //- /std.rs crate:std | ||
110 | #[prelude_import] use prelude::*; | ||
111 | mod prelude {} | ||
112 | |||
113 | mod boxed { | ||
114 | pub struct Box<T: ?Sized> { | ||
115 | inner: *mut T, | ||
116 | } | ||
117 | } | ||
118 | |||
119 | "#, | ||
120 | ); | ||
121 | assert_eq!("(Box<i32>, Box<Box<i32>>, Box<&i32>, Box<[i32;_]>)", type_at_pos(&db, pos)); | ||
122 | } | ||
123 | |||
124 | #[test] | ||
125 | fn infer_adt_self() { | ||
126 | let (db, pos) = TestDB::with_position( | ||
127 | r#" | ||
128 | //- /main.rs | ||
129 | enum Nat { Succ(Self), Demo(Nat), Zero } | ||
130 | |||
131 | fn test() { | ||
132 | let foo: Nat = Nat::Zero; | ||
133 | if let Nat::Succ(x) = foo { | ||
134 | x<|> | ||
135 | } | ||
136 | } | ||
137 | |||
138 | "#, | ||
139 | ); | ||
140 | assert_eq!("Nat", type_at_pos(&db, pos)); | ||
141 | } | ||
142 | |||
143 | #[test] | ||
144 | fn infer_try() { | ||
145 | let (db, pos) = TestDB::with_position( | ||
146 | r#" | ||
147 | //- /main.rs crate:main deps:std | ||
148 | |||
149 | fn test() { | ||
150 | let r: Result<i32, u64> = Result::Ok(1); | ||
151 | let v = r?; | ||
152 | v<|>; | ||
153 | } | ||
154 | |||
155 | //- /std.rs crate:std | ||
156 | |||
157 | #[prelude_import] use ops::*; | ||
158 | mod ops { | ||
159 | trait Try { | ||
160 | type Ok; | ||
161 | type Error; | ||
162 | } | ||
163 | } | ||
164 | |||
165 | #[prelude_import] use result::*; | ||
166 | mod result { | ||
167 | enum Result<O, E> { | ||
168 | Ok(O), | ||
169 | Err(E) | ||
170 | } | ||
171 | |||
172 | impl<O, E> crate::ops::Try for Result<O, E> { | ||
173 | type Ok = O; | ||
174 | type Error = E; | ||
175 | } | ||
176 | } | ||
177 | |||
178 | "#, | ||
179 | ); | ||
180 | assert_eq!("i32", type_at_pos(&db, pos)); | ||
181 | } | ||
182 | |||
183 | #[test] | ||
184 | fn infer_for_loop() { | ||
185 | let (db, pos) = TestDB::with_position( | ||
186 | r#" | ||
187 | //- /main.rs crate:main deps:std | ||
188 | |||
189 | use std::collections::Vec; | ||
190 | |||
191 | fn test() { | ||
192 | let v = Vec::new(); | ||
193 | v.push("foo"); | ||
194 | for x in v { | ||
195 | x<|>; | ||
196 | } | ||
197 | } | ||
198 | |||
199 | //- /std.rs crate:std | ||
200 | |||
201 | #[prelude_import] use iter::*; | ||
202 | mod iter { | ||
203 | trait IntoIterator { | ||
204 | type Item; | ||
205 | } | ||
206 | } | ||
207 | |||
208 | mod collections { | ||
209 | struct Vec<T> {} | ||
210 | impl<T> Vec<T> { | ||
211 | fn new() -> Self { Vec {} } | ||
212 | fn push(&mut self, t: T) { } | ||
213 | } | ||
214 | |||
215 | impl<T> crate::iter::IntoIterator for Vec<T> { | ||
216 | type Item=T; | ||
217 | } | ||
218 | } | ||
219 | "#, | ||
220 | ); | ||
221 | assert_eq!("&str", type_at_pos(&db, pos)); | ||
222 | } | ||
223 | |||
224 | #[test] | ||
225 | fn infer_while_let() { | ||
226 | let (db, pos) = TestDB::with_position( | ||
227 | r#" | ||
228 | //- /main.rs | ||
229 | enum Option<T> { Some(T), None } | ||
230 | |||
231 | fn test() { | ||
232 | let foo: Option<f32> = None; | ||
233 | while let Option::Some(x) = foo { | ||
234 | <|>x | ||
235 | } | ||
236 | } | ||
237 | |||
238 | "#, | ||
239 | ); | ||
240 | assert_eq!("f32", type_at_pos(&db, pos)); | ||
241 | } | ||
242 | |||
243 | #[test] | ||
244 | fn infer_basics() { | ||
245 | assert_snapshot!( | ||
246 | infer(r#" | ||
247 | fn test(a: u32, b: isize, c: !, d: &str) { | ||
248 | a; | ||
249 | b; | ||
250 | c; | ||
251 | d; | ||
252 | 1usize; | ||
253 | 1isize; | ||
254 | "test"; | ||
255 | 1.0f32; | ||
256 | }"#), | ||
257 | @r###" | ||
258 | [9; 10) 'a': u32 | ||
259 | [17; 18) 'b': isize | ||
260 | [27; 28) 'c': ! | ||
261 | [33; 34) 'd': &str | ||
262 | [42; 121) '{ ...f32; }': ! | ||
263 | [48; 49) 'a': u32 | ||
264 | [55; 56) 'b': isize | ||
265 | [62; 63) 'c': ! | ||
266 | [69; 70) 'd': &str | ||
267 | [76; 82) '1usize': usize | ||
268 | [88; 94) '1isize': isize | ||
269 | [100; 106) '"test"': &str | ||
270 | [112; 118) '1.0f32': f32 | ||
271 | "### | ||
272 | ); | ||
273 | } | ||
274 | |||
275 | #[test] | ||
276 | fn infer_let() { | ||
277 | assert_snapshot!( | ||
278 | infer(r#" | ||
279 | fn test() { | ||
280 | let a = 1isize; | ||
281 | let b: usize = 1; | ||
282 | let c = b; | ||
283 | let d: u32; | ||
284 | let e; | ||
285 | let f: i32 = e; | ||
286 | } | ||
287 | "#), | ||
288 | @r###" | ||
289 | [11; 118) '{ ...= e; }': () | ||
290 | [21; 22) 'a': isize | ||
291 | [25; 31) '1isize': isize | ||
292 | [41; 42) 'b': usize | ||
293 | [52; 53) '1': usize | ||
294 | [63; 64) 'c': usize | ||
295 | [67; 68) 'b': usize | ||
296 | [78; 79) 'd': u32 | ||
297 | [94; 95) 'e': i32 | ||
298 | [105; 106) 'f': i32 | ||
299 | [114; 115) 'e': i32 | ||
300 | "### | ||
301 | ); | ||
302 | } | ||
303 | |||
304 | #[test] | ||
305 | fn infer_paths() { | ||
306 | assert_snapshot!( | ||
307 | infer(r#" | ||
308 | fn a() -> u32 { 1 } | ||
309 | |||
310 | mod b { | ||
311 | fn c() -> u32 { 1 } | ||
312 | } | ||
313 | |||
314 | fn test() { | ||
315 | a(); | ||
316 | b::c(); | ||
317 | } | ||
318 | "#), | ||
319 | @r###" | ||
320 | [15; 20) '{ 1 }': u32 | ||
321 | [17; 18) '1': u32 | ||
322 | [48; 53) '{ 1 }': u32 | ||
323 | [50; 51) '1': u32 | ||
324 | [67; 91) '{ ...c(); }': () | ||
325 | [73; 74) 'a': fn a() -> u32 | ||
326 | [73; 76) 'a()': u32 | ||
327 | [82; 86) 'b::c': fn c() -> u32 | ||
328 | [82; 88) 'b::c()': u32 | ||
329 | "### | ||
330 | ); | ||
331 | } | ||
332 | |||
333 | #[test] | ||
334 | fn infer_path_type() { | ||
335 | assert_snapshot!( | ||
336 | infer(r#" | ||
337 | struct S; | ||
338 | |||
339 | impl S { | ||
340 | fn foo() -> i32 { 1 } | ||
341 | } | ||
342 | |||
343 | fn test() { | ||
344 | S::foo(); | ||
345 | <S>::foo(); | ||
346 | } | ||
347 | "#), | ||
348 | @r###" | ||
349 | [41; 46) '{ 1 }': i32 | ||
350 | [43; 44) '1': i32 | ||
351 | [60; 93) '{ ...o(); }': () | ||
352 | [66; 72) 'S::foo': fn foo() -> i32 | ||
353 | [66; 74) 'S::foo()': i32 | ||
354 | [80; 88) '<S>::foo': fn foo() -> i32 | ||
355 | [80; 90) '<S>::foo()': i32 | ||
356 | "### | ||
357 | ); | ||
358 | } | ||
359 | |||
360 | #[test] | ||
361 | fn infer_slice_method() { | ||
362 | assert_snapshot!( | ||
363 | infer(r#" | ||
364 | #[lang = "slice"] | ||
365 | impl<T> [T] { | ||
366 | fn foo(&self) -> T { | ||
367 | loop {} | ||
368 | } | ||
369 | } | ||
370 | |||
371 | #[lang = "slice_alloc"] | ||
372 | impl<T> [T] {} | ||
373 | |||
374 | fn test() { | ||
375 | <[_]>::foo(b"foo"); | ||
376 | } | ||
377 | "#), | ||
378 | @r###" | ||
379 | [45; 49) 'self': &[T] | ||
380 | [56; 79) '{ ... }': T | ||
381 | [66; 73) 'loop {}': ! | ||
382 | [71; 73) '{}': () | ||
383 | [133; 160) '{ ...o"); }': () | ||
384 | [139; 149) '<[_]>::foo': fn foo<u8>(&[T]) -> T | ||
385 | [139; 157) '<[_]>:..."foo")': u8 | ||
386 | [150; 156) 'b"foo"': &[u8] | ||
387 | "### | ||
388 | ); | ||
389 | } | ||
390 | |||
391 | #[test] | ||
392 | fn infer_struct() { | ||
393 | assert_snapshot!( | ||
394 | infer(r#" | ||
395 | struct A { | ||
396 | b: B, | ||
397 | c: C, | ||
398 | } | ||
399 | struct B; | ||
400 | struct C(usize); | ||
401 | |||
402 | fn test() { | ||
403 | let c = C(1); | ||
404 | B; | ||
405 | let a: A = A { b: B, c: C(1) }; | ||
406 | a.b; | ||
407 | a.c; | ||
408 | } | ||
409 | "#), | ||
410 | @r###" | ||
411 | [72; 154) '{ ...a.c; }': () | ||
412 | [82; 83) 'c': C | ||
413 | [86; 87) 'C': C(usize) -> C | ||
414 | [86; 90) 'C(1)': C | ||
415 | [88; 89) '1': usize | ||
416 | [96; 97) 'B': B | ||
417 | [107; 108) 'a': A | ||
418 | [114; 133) 'A { b:...C(1) }': A | ||
419 | [121; 122) 'B': B | ||
420 | [127; 128) 'C': C(usize) -> C | ||
421 | [127; 131) 'C(1)': C | ||
422 | [129; 130) '1': usize | ||
423 | [139; 140) 'a': A | ||
424 | [139; 142) 'a.b': B | ||
425 | [148; 149) 'a': A | ||
426 | [148; 151) 'a.c': C | ||
427 | "### | ||
428 | ); | ||
429 | } | ||
430 | |||
431 | #[test] | ||
432 | fn infer_enum() { | ||
433 | assert_snapshot!( | ||
434 | infer(r#" | ||
435 | enum E { | ||
436 | V1 { field: u32 }, | ||
437 | V2 | ||
438 | } | ||
439 | fn test() { | ||
440 | E::V1 { field: 1 }; | ||
441 | E::V2; | ||
442 | }"#), | ||
443 | @r###" | ||
444 | [48; 82) '{ E:...:V2; }': () | ||
445 | [52; 70) 'E::V1 ...d: 1 }': E | ||
446 | [67; 68) '1': u32 | ||
447 | [74; 79) 'E::V2': E | ||
448 | "### | ||
449 | ); | ||
450 | } | ||
451 | |||
452 | #[test] | ||
453 | fn infer_refs() { | ||
454 | assert_snapshot!( | ||
455 | infer(r#" | ||
456 | fn test(a: &u32, b: &mut u32, c: *const u32, d: *mut u32) { | ||
457 | a; | ||
458 | *a; | ||
459 | &a; | ||
460 | &mut a; | ||
461 | b; | ||
462 | *b; | ||
463 | &b; | ||
464 | c; | ||
465 | *c; | ||
466 | d; | ||
467 | *d; | ||
468 | } | ||
469 | "#), | ||
470 | @r###" | ||
471 | [9; 10) 'a': &u32 | ||
472 | [18; 19) 'b': &mut u32 | ||
473 | [31; 32) 'c': *const u32 | ||
474 | [46; 47) 'd': *mut u32 | ||
475 | [59; 150) '{ ... *d; }': () | ||
476 | [65; 66) 'a': &u32 | ||
477 | [72; 74) '*a': u32 | ||
478 | [73; 74) 'a': &u32 | ||
479 | [80; 82) '&a': &&u32 | ||
480 | [81; 82) 'a': &u32 | ||
481 | [88; 94) '&mut a': &mut &u32 | ||
482 | [93; 94) 'a': &u32 | ||
483 | [100; 101) 'b': &mut u32 | ||
484 | [107; 109) '*b': u32 | ||
485 | [108; 109) 'b': &mut u32 | ||
486 | [115; 117) '&b': &&mut u32 | ||
487 | [116; 117) 'b': &mut u32 | ||
488 | [123; 124) 'c': *const u32 | ||
489 | [130; 132) '*c': u32 | ||
490 | [131; 132) 'c': *const u32 | ||
491 | [138; 139) 'd': *mut u32 | ||
492 | [145; 147) '*d': u32 | ||
493 | [146; 147) 'd': *mut u32 | ||
494 | "### | ||
495 | ); | ||
496 | } | ||
497 | |||
498 | #[test] | ||
499 | fn infer_literals() { | ||
500 | assert_snapshot!( | ||
501 | infer(r##" | ||
502 | fn test() { | ||
503 | 5i32; | ||
504 | 5f32; | ||
505 | 5f64; | ||
506 | "hello"; | ||
507 | b"bytes"; | ||
508 | 'c'; | ||
509 | b'b'; | ||
510 | 3.14; | ||
511 | 5000; | ||
512 | false; | ||
513 | true; | ||
514 | r#" | ||
515 | //! doc | ||
516 | // non-doc | ||
517 | mod foo {} | ||
518 | "#; | ||
519 | br#"yolo"#; | ||
520 | } | ||
521 | "##), | ||
522 | @r###" | ||
523 | [11; 221) '{ ...o"#; }': () | ||
524 | [17; 21) '5i32': i32 | ||
525 | [27; 31) '5f32': f32 | ||
526 | [37; 41) '5f64': f64 | ||
527 | [47; 54) '"hello"': &str | ||
528 | [60; 68) 'b"bytes"': &[u8] | ||
529 | [74; 77) ''c'': char | ||
530 | [83; 87) 'b'b'': u8 | ||
531 | [93; 97) '3.14': f64 | ||
532 | [103; 107) '5000': i32 | ||
533 | [113; 118) 'false': bool | ||
534 | [124; 128) 'true': bool | ||
535 | [134; 202) 'r#" ... "#': &str | ||
536 | [208; 218) 'br#"yolo"#': &[u8] | ||
537 | "### | ||
538 | ); | ||
539 | } | ||
540 | |||
541 | #[test] | ||
542 | fn infer_unary_op() { | ||
543 | assert_snapshot!( | ||
544 | infer(r#" | ||
545 | enum SomeType {} | ||
546 | |||
547 | fn test(x: SomeType) { | ||
548 | let b = false; | ||
549 | let c = !b; | ||
550 | let a = 100; | ||
551 | let d: i128 = -a; | ||
552 | let e = -100; | ||
553 | let f = !!!true; | ||
554 | let g = !42; | ||
555 | let h = !10u32; | ||
556 | let j = !a; | ||
557 | -3.14; | ||
558 | !3; | ||
559 | -x; | ||
560 | !x; | ||
561 | -"hello"; | ||
562 | !"hello"; | ||
563 | } | ||
564 | "#), | ||
565 | @r###" | ||
566 | [27; 28) 'x': SomeType | ||
567 | [40; 272) '{ ...lo"; }': () | ||
568 | [50; 51) 'b': bool | ||
569 | [54; 59) 'false': bool | ||
570 | [69; 70) 'c': bool | ||
571 | [73; 75) '!b': bool | ||
572 | [74; 75) 'b': bool | ||
573 | [85; 86) 'a': i128 | ||
574 | [89; 92) '100': i128 | ||
575 | [102; 103) 'd': i128 | ||
576 | [112; 114) '-a': i128 | ||
577 | [113; 114) 'a': i128 | ||
578 | [124; 125) 'e': i32 | ||
579 | [128; 132) '-100': i32 | ||
580 | [129; 132) '100': i32 | ||
581 | [142; 143) 'f': bool | ||
582 | [146; 153) '!!!true': bool | ||
583 | [147; 153) '!!true': bool | ||
584 | [148; 153) '!true': bool | ||
585 | [149; 153) 'true': bool | ||
586 | [163; 164) 'g': i32 | ||
587 | [167; 170) '!42': i32 | ||
588 | [168; 170) '42': i32 | ||
589 | [180; 181) 'h': u32 | ||
590 | [184; 190) '!10u32': u32 | ||
591 | [185; 190) '10u32': u32 | ||
592 | [200; 201) 'j': i128 | ||
593 | [204; 206) '!a': i128 | ||
594 | [205; 206) 'a': i128 | ||
595 | [212; 217) '-3.14': f64 | ||
596 | [213; 217) '3.14': f64 | ||
597 | [223; 225) '!3': i32 | ||
598 | [224; 225) '3': i32 | ||
599 | [231; 233) '-x': {unknown} | ||
600 | [232; 233) 'x': SomeType | ||
601 | [239; 241) '!x': {unknown} | ||
602 | [240; 241) 'x': SomeType | ||
603 | [247; 255) '-"hello"': {unknown} | ||
604 | [248; 255) '"hello"': &str | ||
605 | [261; 269) '!"hello"': {unknown} | ||
606 | [262; 269) '"hello"': &str | ||
607 | "### | ||
608 | ); | ||
609 | } | ||
610 | |||
611 | #[test] | ||
612 | fn infer_backwards() { | ||
613 | assert_snapshot!( | ||
614 | infer(r#" | ||
615 | fn takes_u32(x: u32) {} | ||
616 | |||
617 | struct S { i32_field: i32 } | ||
618 | |||
619 | fn test() -> &mut &f64 { | ||
620 | let a = unknown_function(); | ||
621 | takes_u32(a); | ||
622 | let b = unknown_function(); | ||
623 | S { i32_field: b }; | ||
624 | let c = unknown_function(); | ||
625 | &mut &c | ||
626 | } | ||
627 | "#), | ||
628 | @r###" | ||
629 | [14; 15) 'x': u32 | ||
630 | [22; 24) '{}': () | ||
631 | [78; 231) '{ ...t &c }': &mut &f64 | ||
632 | [88; 89) 'a': u32 | ||
633 | [92; 108) 'unknow...nction': {unknown} | ||
634 | [92; 110) 'unknow...tion()': u32 | ||
635 | [116; 125) 'takes_u32': fn takes_u32(u32) -> () | ||
636 | [116; 128) 'takes_u32(a)': () | ||
637 | [126; 127) 'a': u32 | ||
638 | [138; 139) 'b': i32 | ||
639 | [142; 158) 'unknow...nction': {unknown} | ||
640 | [142; 160) 'unknow...tion()': i32 | ||
641 | [166; 184) 'S { i3...d: b }': S | ||
642 | [181; 182) 'b': i32 | ||
643 | [194; 195) 'c': f64 | ||
644 | [198; 214) 'unknow...nction': {unknown} | ||
645 | [198; 216) 'unknow...tion()': f64 | ||
646 | [222; 229) '&mut &c': &mut &f64 | ||
647 | [227; 229) '&c': &f64 | ||
648 | [228; 229) 'c': f64 | ||
649 | "### | ||
650 | ); | ||
651 | } | ||
652 | |||
653 | #[test] | ||
654 | fn infer_self() { | ||
655 | assert_snapshot!( | ||
656 | infer(r#" | ||
657 | struct S; | ||
658 | |||
659 | impl S { | ||
660 | fn test(&self) { | ||
661 | self; | ||
662 | } | ||
663 | fn test2(self: &Self) { | ||
664 | self; | ||
665 | } | ||
666 | fn test3() -> Self { | ||
667 | S {} | ||
668 | } | ||
669 | fn test4() -> Self { | ||
670 | Self {} | ||
671 | } | ||
672 | } | ||
673 | "#), | ||
674 | @r###" | ||
675 | [34; 38) 'self': &S | ||
676 | [40; 61) '{ ... }': () | ||
677 | [50; 54) 'self': &S | ||
678 | [75; 79) 'self': &S | ||
679 | [88; 109) '{ ... }': () | ||
680 | [98; 102) 'self': &S | ||
681 | [133; 153) '{ ... }': S | ||
682 | [143; 147) 'S {}': S | ||
683 | [177; 200) '{ ... }': S | ||
684 | [187; 194) 'Self {}': S | ||
685 | "### | ||
686 | ); | ||
687 | } | ||
688 | |||
689 | #[test] | ||
690 | fn infer_binary_op() { | ||
691 | assert_snapshot!( | ||
692 | infer(r#" | ||
693 | fn f(x: bool) -> i32 { | ||
694 | 0i32 | ||
695 | } | ||
696 | |||
697 | fn test() -> bool { | ||
698 | let x = a && b; | ||
699 | let y = true || false; | ||
700 | let z = x == y; | ||
701 | let t = x != y; | ||
702 | let minus_forty: isize = -40isize; | ||
703 | let h = minus_forty <= CONST_2; | ||
704 | let c = f(z || y) + 5; | ||
705 | let d = b; | ||
706 | let g = minus_forty ^= i; | ||
707 | let ten: usize = 10; | ||
708 | let ten_is_eleven = ten == some_num; | ||
709 | |||
710 | ten < 3 | ||
711 | } | ||
712 | "#), | ||
713 | @r###" | ||
714 | [6; 7) 'x': bool | ||
715 | [22; 34) '{ 0i32 }': i32 | ||
716 | [28; 32) '0i32': i32 | ||
717 | [54; 370) '{ ... < 3 }': bool | ||
718 | [64; 65) 'x': bool | ||
719 | [68; 69) 'a': bool | ||
720 | [68; 74) 'a && b': bool | ||
721 | [73; 74) 'b': bool | ||
722 | [84; 85) 'y': bool | ||
723 | [88; 92) 'true': bool | ||
724 | [88; 101) 'true || false': bool | ||
725 | [96; 101) 'false': bool | ||
726 | [111; 112) 'z': bool | ||
727 | [115; 116) 'x': bool | ||
728 | [115; 121) 'x == y': bool | ||
729 | [120; 121) 'y': bool | ||
730 | [131; 132) 't': bool | ||
731 | [135; 136) 'x': bool | ||
732 | [135; 141) 'x != y': bool | ||
733 | [140; 141) 'y': bool | ||
734 | [151; 162) 'minus_forty': isize | ||
735 | [172; 180) '-40isize': isize | ||
736 | [173; 180) '40isize': isize | ||
737 | [190; 191) 'h': bool | ||
738 | [194; 205) 'minus_forty': isize | ||
739 | [194; 216) 'minus_...ONST_2': bool | ||
740 | [209; 216) 'CONST_2': isize | ||
741 | [226; 227) 'c': i32 | ||
742 | [230; 231) 'f': fn f(bool) -> i32 | ||
743 | [230; 239) 'f(z || y)': i32 | ||
744 | [230; 243) 'f(z || y) + 5': i32 | ||
745 | [232; 233) 'z': bool | ||
746 | [232; 238) 'z || y': bool | ||
747 | [237; 238) 'y': bool | ||
748 | [242; 243) '5': i32 | ||
749 | [253; 254) 'd': {unknown} | ||
750 | [257; 258) 'b': {unknown} | ||
751 | [268; 269) 'g': () | ||
752 | [272; 283) 'minus_forty': isize | ||
753 | [272; 288) 'minus_...y ^= i': () | ||
754 | [287; 288) 'i': isize | ||
755 | [298; 301) 'ten': usize | ||
756 | [311; 313) '10': usize | ||
757 | [323; 336) 'ten_is_eleven': bool | ||
758 | [339; 342) 'ten': usize | ||
759 | [339; 354) 'ten == some_num': bool | ||
760 | [346; 354) 'some_num': usize | ||
761 | [361; 364) 'ten': usize | ||
762 | [361; 368) 'ten < 3': bool | ||
763 | [367; 368) '3': usize | ||
764 | "### | ||
765 | ); | ||
766 | } | ||
767 | |||
768 | #[test] | ||
769 | fn infer_field_autoderef() { | ||
770 | assert_snapshot!( | ||
771 | infer(r#" | ||
772 | struct A { | ||
773 | b: B, | ||
774 | } | ||
775 | struct B; | ||
776 | |||
777 | fn test1(a: A) { | ||
778 | let a1 = a; | ||
779 | a1.b; | ||
780 | let a2 = &a; | ||
781 | a2.b; | ||
782 | let a3 = &mut a; | ||
783 | a3.b; | ||
784 | let a4 = &&&&&&&a; | ||
785 | a4.b; | ||
786 | let a5 = &mut &&mut &&mut a; | ||
787 | a5.b; | ||
788 | } | ||
789 | |||
790 | fn test2(a1: *const A, a2: *mut A) { | ||
791 | a1.b; | ||
792 | a2.b; | ||
793 | } | ||
794 | "#), | ||
795 | @r###" | ||
796 | [44; 45) 'a': A | ||
797 | [50; 213) '{ ...5.b; }': () | ||
798 | [60; 62) 'a1': A | ||
799 | [65; 66) 'a': A | ||
800 | [72; 74) 'a1': A | ||
801 | [72; 76) 'a1.b': B | ||
802 | [86; 88) 'a2': &A | ||
803 | [91; 93) '&a': &A | ||
804 | [92; 93) 'a': A | ||
805 | [99; 101) 'a2': &A | ||
806 | [99; 103) 'a2.b': B | ||
807 | [113; 115) 'a3': &mut A | ||
808 | [118; 124) '&mut a': &mut A | ||
809 | [123; 124) 'a': A | ||
810 | [130; 132) 'a3': &mut A | ||
811 | [130; 134) 'a3.b': B | ||
812 | [144; 146) 'a4': &&&&&&&A | ||
813 | [149; 157) '&&&&&&&a': &&&&&&&A | ||
814 | [150; 157) '&&&&&&a': &&&&&&A | ||
815 | [151; 157) '&&&&&a': &&&&&A | ||
816 | [152; 157) '&&&&a': &&&&A | ||
817 | [153; 157) '&&&a': &&&A | ||
818 | [154; 157) '&&a': &&A | ||
819 | [155; 157) '&a': &A | ||
820 | [156; 157) 'a': A | ||
821 | [163; 165) 'a4': &&&&&&&A | ||
822 | [163; 167) 'a4.b': B | ||
823 | [177; 179) 'a5': &mut &&mut &&mut A | ||
824 | [182; 200) '&mut &...&mut a': &mut &&mut &&mut A | ||
825 | [187; 200) '&&mut &&mut a': &&mut &&mut A | ||
826 | [188; 200) '&mut &&mut a': &mut &&mut A | ||
827 | [193; 200) '&&mut a': &&mut A | ||
828 | [194; 200) '&mut a': &mut A | ||
829 | [199; 200) 'a': A | ||
830 | [206; 208) 'a5': &mut &&mut &&mut A | ||
831 | [206; 210) 'a5.b': B | ||
832 | [224; 226) 'a1': *const A | ||
833 | [238; 240) 'a2': *mut A | ||
834 | [250; 273) '{ ...2.b; }': () | ||
835 | [256; 258) 'a1': *const A | ||
836 | [256; 260) 'a1.b': B | ||
837 | [266; 268) 'a2': *mut A | ||
838 | [266; 270) 'a2.b': B | ||
839 | "### | ||
840 | ); | ||
841 | } | ||
842 | |||
843 | #[test] | ||
844 | fn infer_argument_autoderef() { | ||
845 | assert_snapshot!( | ||
846 | infer(r#" | ||
847 | #[lang = "deref"] | ||
848 | pub trait Deref { | ||
849 | type Target; | ||
850 | fn deref(&self) -> &Self::Target; | ||
851 | } | ||
852 | |||
853 | struct A<T>(T); | ||
854 | |||
855 | impl<T> A<T> { | ||
856 | fn foo(&self) -> &T { | ||
857 | &self.0 | ||
858 | } | ||
859 | } | ||
860 | |||
861 | struct B<T>(T); | ||
862 | |||
863 | impl<T> Deref for B<T> { | ||
864 | type Target = T; | ||
865 | fn deref(&self) -> &Self::Target { | ||
866 | &self.0 | ||
867 | } | ||
868 | } | ||
869 | |||
870 | fn test() { | ||
871 | let t = A::foo(&&B(B(A(42)))); | ||
872 | } | ||
873 | "#), | ||
874 | @r###" | ||
875 | [68; 72) 'self': &Self | ||
876 | [139; 143) 'self': &A<T> | ||
877 | [151; 174) '{ ... }': &T | ||
878 | [161; 168) '&self.0': &T | ||
879 | [162; 166) 'self': &A<T> | ||
880 | [162; 168) 'self.0': T | ||
881 | [255; 259) 'self': &B<T> | ||
882 | [278; 301) '{ ... }': &T | ||
883 | [288; 295) '&self.0': &T | ||
884 | [289; 293) 'self': &B<T> | ||
885 | [289; 295) 'self.0': T | ||
886 | [315; 353) '{ ...))); }': () | ||
887 | [325; 326) 't': &i32 | ||
888 | [329; 335) 'A::foo': fn foo<i32>(&A<T>) -> &T | ||
889 | [329; 350) 'A::foo...42))))': &i32 | ||
890 | [336; 349) '&&B(B(A(42)))': &&B<B<A<i32>>> | ||
891 | [337; 349) '&B(B(A(42)))': &B<B<A<i32>>> | ||
892 | [338; 339) 'B': B<B<A<i32>>>(T) -> B<T> | ||
893 | [338; 349) 'B(B(A(42)))': B<B<A<i32>>> | ||
894 | [340; 341) 'B': B<A<i32>>(T) -> B<T> | ||
895 | [340; 348) 'B(A(42))': B<A<i32>> | ||
896 | [342; 343) 'A': A<i32>(T) -> A<T> | ||
897 | [342; 347) 'A(42)': A<i32> | ||
898 | [344; 346) '42': i32 | ||
899 | "### | ||
900 | ); | ||
901 | } | ||
902 | |||
903 | #[test] | ||
904 | fn infer_method_argument_autoderef() { | ||
905 | assert_snapshot!( | ||
906 | infer(r#" | ||
907 | #[lang = "deref"] | ||
908 | pub trait Deref { | ||
909 | type Target; | ||
910 | fn deref(&self) -> &Self::Target; | ||
911 | } | ||
912 | |||
913 | struct A<T>(*mut T); | ||
914 | |||
915 | impl<T> A<T> { | ||
916 | fn foo(&self, x: &A<T>) -> &T { | ||
917 | &*x.0 | ||
918 | } | ||
919 | } | ||
920 | |||
921 | struct B<T>(T); | ||
922 | |||
923 | impl<T> Deref for B<T> { | ||
924 | type Target = T; | ||
925 | fn deref(&self) -> &Self::Target { | ||
926 | &self.0 | ||
927 | } | ||
928 | } | ||
929 | |||
930 | fn test(a: A<i32>) { | ||
931 | let t = A(0 as *mut _).foo(&&B(B(a))); | ||
932 | } | ||
933 | "#), | ||
934 | @r###" | ||
935 | [68; 72) 'self': &Self | ||
936 | [144; 148) 'self': &A<T> | ||
937 | [150; 151) 'x': &A<T> | ||
938 | [166; 187) '{ ... }': &T | ||
939 | [176; 181) '&*x.0': &T | ||
940 | [177; 181) '*x.0': T | ||
941 | [178; 179) 'x': &A<T> | ||
942 | [178; 181) 'x.0': *mut T | ||
943 | [268; 272) 'self': &B<T> | ||
944 | [291; 314) '{ ... }': &T | ||
945 | [301; 308) '&self.0': &T | ||
946 | [302; 306) 'self': &B<T> | ||
947 | [302; 308) 'self.0': T | ||
948 | [326; 327) 'a': A<i32> | ||
949 | [337; 383) '{ ...))); }': () | ||
950 | [347; 348) 't': &i32 | ||
951 | [351; 352) 'A': A<i32>(*mut T) -> A<T> | ||
952 | [351; 365) 'A(0 as *mut _)': A<i32> | ||
953 | [351; 380) 'A(0 as...B(a)))': &i32 | ||
954 | [353; 354) '0': i32 | ||
955 | [353; 364) '0 as *mut _': *mut i32 | ||
956 | [370; 379) '&&B(B(a))': &&B<B<A<i32>>> | ||
957 | [371; 379) '&B(B(a))': &B<B<A<i32>>> | ||
958 | [372; 373) 'B': B<B<A<i32>>>(T) -> B<T> | ||
959 | [372; 379) 'B(B(a))': B<B<A<i32>>> | ||
960 | [374; 375) 'B': B<A<i32>>(T) -> B<T> | ||
961 | [374; 378) 'B(a)': B<A<i32>> | ||
962 | [376; 377) 'a': A<i32> | ||
963 | "### | ||
964 | ); | ||
965 | } | ||
966 | |||
967 | #[test] | ||
968 | fn bug_484() { | ||
969 | assert_snapshot!( | ||
970 | infer(r#" | ||
971 | fn test() { | ||
972 | let x = if true {}; | ||
973 | } | ||
974 | "#), | ||
975 | @r###" | ||
976 | [11; 37) '{ l... {}; }': () | ||
977 | [20; 21) 'x': () | ||
978 | [24; 34) 'if true {}': () | ||
979 | [27; 31) 'true': bool | ||
980 | [32; 34) '{}': () | ||
981 | "### | ||
982 | ); | ||
983 | } | ||
984 | |||
985 | #[test] | ||
986 | fn infer_in_elseif() { | ||
987 | assert_snapshot!( | ||
988 | infer(r#" | ||
989 | struct Foo { field: i32 } | ||
990 | fn main(foo: Foo) { | ||
991 | if true { | ||
992 | |||
993 | } else if false { | ||
994 | foo.field | ||
995 | } | ||
996 | } | ||
997 | "#), | ||
998 | @r###" | ||
999 | [35; 38) 'foo': Foo | ||
1000 | [45; 109) '{ ... } }': () | ||
1001 | [51; 107) 'if tru... }': () | ||
1002 | [54; 58) 'true': bool | ||
1003 | [59; 67) '{ }': () | ||
1004 | [73; 107) 'if fal... }': () | ||
1005 | [76; 81) 'false': bool | ||
1006 | [82; 107) '{ ... }': i32 | ||
1007 | [92; 95) 'foo': Foo | ||
1008 | [92; 101) 'foo.field': i32 | ||
1009 | "### | ||
1010 | ) | ||
1011 | } | ||
1012 | |||
1013 | #[test] | ||
1014 | fn infer_if_match_with_return() { | ||
1015 | assert_snapshot!( | ||
1016 | infer(r#" | ||
1017 | fn foo() { | ||
1018 | let _x1 = if true { | ||
1019 | 1 | ||
1020 | } else { | ||
1021 | return; | ||
1022 | }; | ||
1023 | let _x2 = if true { | ||
1024 | 2 | ||
1025 | } else { | ||
1026 | return | ||
1027 | }; | ||
1028 | let _x3 = match true { | ||
1029 | true => 3, | ||
1030 | _ => { | ||
1031 | return; | ||
1032 | } | ||
1033 | }; | ||
1034 | let _x4 = match true { | ||
1035 | true => 4, | ||
1036 | _ => return | ||
1037 | }; | ||
1038 | }"#), | ||
1039 | @r###" | ||
1040 | [10; 323) '{ ... }; }': () | ||
1041 | [20; 23) '_x1': i32 | ||
1042 | [26; 80) 'if tru... }': i32 | ||
1043 | [29; 33) 'true': bool | ||
1044 | [34; 51) '{ ... }': i32 | ||
1045 | [44; 45) '1': i32 | ||
1046 | [57; 80) '{ ... }': ! | ||
1047 | [67; 73) 'return': ! | ||
1048 | [90; 93) '_x2': i32 | ||
1049 | [96; 149) 'if tru... }': i32 | ||
1050 | [99; 103) 'true': bool | ||
1051 | [104; 121) '{ ... }': i32 | ||
1052 | [114; 115) '2': i32 | ||
1053 | [127; 149) '{ ... }': ! | ||
1054 | [137; 143) 'return': ! | ||
1055 | [159; 162) '_x3': i32 | ||
1056 | [165; 247) 'match ... }': i32 | ||
1057 | [171; 175) 'true': bool | ||
1058 | [186; 190) 'true': bool | ||
1059 | [194; 195) '3': i32 | ||
1060 | [205; 206) '_': bool | ||
1061 | [210; 241) '{ ... }': ! | ||
1062 | [224; 230) 'return': ! | ||
1063 | [257; 260) '_x4': i32 | ||
1064 | [263; 320) 'match ... }': i32 | ||
1065 | [269; 273) 'true': bool | ||
1066 | [284; 288) 'true': bool | ||
1067 | [292; 293) '4': i32 | ||
1068 | [303; 304) '_': bool | ||
1069 | [308; 314) 'return': ! | ||
1070 | "### | ||
1071 | ) | ||
1072 | } | ||
1073 | |||
1074 | #[test] | ||
1075 | fn infer_inherent_method() { | ||
1076 | assert_snapshot!( | ||
1077 | infer(r#" | ||
1078 | struct A; | ||
1079 | |||
1080 | impl A { | ||
1081 | fn foo(self, x: u32) -> i32 {} | ||
1082 | } | ||
1083 | |||
1084 | mod b { | ||
1085 | impl super::A { | ||
1086 | fn bar(&self, x: u64) -> i64 {} | ||
1087 | } | ||
1088 | } | ||
1089 | |||
1090 | fn test(a: A) { | ||
1091 | a.foo(1); | ||
1092 | (&a).bar(1); | ||
1093 | a.bar(1); | ||
1094 | } | ||
1095 | "#), | ||
1096 | @r###" | ||
1097 | [32; 36) 'self': A | ||
1098 | [38; 39) 'x': u32 | ||
1099 | [53; 55) '{}': () | ||
1100 | [103; 107) 'self': &A | ||
1101 | [109; 110) 'x': u64 | ||
1102 | [124; 126) '{}': () | ||
1103 | [144; 145) 'a': A | ||
1104 | [150; 198) '{ ...(1); }': () | ||
1105 | [156; 157) 'a': A | ||
1106 | [156; 164) 'a.foo(1)': i32 | ||
1107 | [162; 163) '1': u32 | ||
1108 | [170; 181) '(&a).bar(1)': i64 | ||
1109 | [171; 173) '&a': &A | ||
1110 | [172; 173) 'a': A | ||
1111 | [179; 180) '1': u64 | ||
1112 | [187; 188) 'a': A | ||
1113 | [187; 195) 'a.bar(1)': i64 | ||
1114 | [193; 194) '1': u64 | ||
1115 | "### | ||
1116 | ); | ||
1117 | } | ||
1118 | |||
1119 | #[test] | ||
1120 | fn infer_inherent_method_str() { | ||
1121 | assert_snapshot!( | ||
1122 | infer(r#" | ||
1123 | #[lang = "str"] | ||
1124 | impl str { | ||
1125 | fn foo(&self) -> i32 {} | ||
1126 | } | ||
1127 | |||
1128 | fn test() { | ||
1129 | "foo".foo(); | ||
1130 | } | ||
1131 | "#), | ||
1132 | @r###" | ||
1133 | [40; 44) 'self': &str | ||
1134 | [53; 55) '{}': () | ||
1135 | [69; 89) '{ ...o(); }': () | ||
1136 | [75; 80) '"foo"': &str | ||
1137 | [75; 86) '"foo".foo()': i32 | ||
1138 | "### | ||
1139 | ); | ||
1140 | } | ||
1141 | |||
1142 | #[test] | ||
1143 | fn infer_tuple() { | ||
1144 | assert_snapshot!( | ||
1145 | infer(r#" | ||
1146 | fn test(x: &str, y: isize) { | ||
1147 | let a: (u32, &str) = (1, "a"); | ||
1148 | let b = (a, x); | ||
1149 | let c = (y, x); | ||
1150 | let d = (c, x); | ||
1151 | let e = (1, "e"); | ||
1152 | let f = (e, "d"); | ||
1153 | } | ||
1154 | "#), | ||
1155 | @r###" | ||
1156 | [9; 10) 'x': &str | ||
1157 | [18; 19) 'y': isize | ||
1158 | [28; 170) '{ ...d"); }': () | ||
1159 | [38; 39) 'a': (u32, &str) | ||
1160 | [55; 63) '(1, "a")': (u32, &str) | ||
1161 | [56; 57) '1': u32 | ||
1162 | [59; 62) '"a"': &str | ||
1163 | [73; 74) 'b': ((u32, &str), &str) | ||
1164 | [77; 83) '(a, x)': ((u32, &str), &str) | ||
1165 | [78; 79) 'a': (u32, &str) | ||
1166 | [81; 82) 'x': &str | ||
1167 | [93; 94) 'c': (isize, &str) | ||
1168 | [97; 103) '(y, x)': (isize, &str) | ||
1169 | [98; 99) 'y': isize | ||
1170 | [101; 102) 'x': &str | ||
1171 | [113; 114) 'd': ((isize, &str), &str) | ||
1172 | [117; 123) '(c, x)': ((isize, &str), &str) | ||
1173 | [118; 119) 'c': (isize, &str) | ||
1174 | [121; 122) 'x': &str | ||
1175 | [133; 134) 'e': (i32, &str) | ||
1176 | [137; 145) '(1, "e")': (i32, &str) | ||
1177 | [138; 139) '1': i32 | ||
1178 | [141; 144) '"e"': &str | ||
1179 | [155; 156) 'f': ((i32, &str), &str) | ||
1180 | [159; 167) '(e, "d")': ((i32, &str), &str) | ||
1181 | [160; 161) 'e': (i32, &str) | ||
1182 | [163; 166) '"d"': &str | ||
1183 | "### | ||
1184 | ); | ||
1185 | } | ||
1186 | |||
1187 | #[test] | ||
1188 | fn infer_array() { | ||
1189 | assert_snapshot!( | ||
1190 | infer(r#" | ||
1191 | fn test(x: &str, y: isize) { | ||
1192 | let a = [x]; | ||
1193 | let b = [a, a]; | ||
1194 | let c = [b, b]; | ||
1195 | |||
1196 | let d = [y, 1, 2, 3]; | ||
1197 | let d = [1, y, 2, 3]; | ||
1198 | let e = [y]; | ||
1199 | let f = [d, d]; | ||
1200 | let g = [e, e]; | ||
1201 | |||
1202 | let h = [1, 2]; | ||
1203 | let i = ["a", "b"]; | ||
1204 | |||
1205 | let b = [a, ["b"]]; | ||
1206 | let x: [u8; 0] = []; | ||
1207 | } | ||
1208 | "#), | ||
1209 | @r###" | ||
1210 | [9; 10) 'x': &str | ||
1211 | [18; 19) 'y': isize | ||
1212 | [28; 293) '{ ... []; }': () | ||
1213 | [38; 39) 'a': [&str;_] | ||
1214 | [42; 45) '[x]': [&str;_] | ||
1215 | [43; 44) 'x': &str | ||
1216 | [55; 56) 'b': [[&str;_];_] | ||
1217 | [59; 65) '[a, a]': [[&str;_];_] | ||
1218 | [60; 61) 'a': [&str;_] | ||
1219 | [63; 64) 'a': [&str;_] | ||
1220 | [75; 76) 'c': [[[&str;_];_];_] | ||
1221 | [79; 85) '[b, b]': [[[&str;_];_];_] | ||
1222 | [80; 81) 'b': [[&str;_];_] | ||
1223 | [83; 84) 'b': [[&str;_];_] | ||
1224 | [96; 97) 'd': [isize;_] | ||
1225 | [100; 112) '[y, 1, 2, 3]': [isize;_] | ||
1226 | [101; 102) 'y': isize | ||
1227 | [104; 105) '1': isize | ||
1228 | [107; 108) '2': isize | ||
1229 | [110; 111) '3': isize | ||
1230 | [122; 123) 'd': [isize;_] | ||
1231 | [126; 138) '[1, y, 2, 3]': [isize;_] | ||
1232 | [127; 128) '1': isize | ||
1233 | [130; 131) 'y': isize | ||
1234 | [133; 134) '2': isize | ||
1235 | [136; 137) '3': isize | ||
1236 | [148; 149) 'e': [isize;_] | ||
1237 | [152; 155) '[y]': [isize;_] | ||
1238 | [153; 154) 'y': isize | ||
1239 | [165; 166) 'f': [[isize;_];_] | ||
1240 | [169; 175) '[d, d]': [[isize;_];_] | ||
1241 | [170; 171) 'd': [isize;_] | ||
1242 | [173; 174) 'd': [isize;_] | ||
1243 | [185; 186) 'g': [[isize;_];_] | ||
1244 | [189; 195) '[e, e]': [[isize;_];_] | ||
1245 | [190; 191) 'e': [isize;_] | ||
1246 | [193; 194) 'e': [isize;_] | ||
1247 | [206; 207) 'h': [i32;_] | ||
1248 | [210; 216) '[1, 2]': [i32;_] | ||
1249 | [211; 212) '1': i32 | ||
1250 | [214; 215) '2': i32 | ||
1251 | [226; 227) 'i': [&str;_] | ||
1252 | [230; 240) '["a", "b"]': [&str;_] | ||
1253 | [231; 234) '"a"': &str | ||
1254 | [236; 239) '"b"': &str | ||
1255 | [251; 252) 'b': [[&str;_];_] | ||
1256 | [255; 265) '[a, ["b"]]': [[&str;_];_] | ||
1257 | [256; 257) 'a': [&str;_] | ||
1258 | [259; 264) '["b"]': [&str;_] | ||
1259 | [260; 263) '"b"': &str | ||
1260 | [275; 276) 'x': [u8;_] | ||
1261 | [288; 290) '[]': [u8;_] | ||
1262 | "### | ||
1263 | ); | ||
1264 | } | ||
1265 | |||
1266 | #[test] | ||
1267 | fn infer_pattern() { | ||
1268 | assert_snapshot!( | ||
1269 | infer(r#" | ||
1270 | fn test(x: &i32) { | ||
1271 | let y = x; | ||
1272 | let &z = x; | ||
1273 | let a = z; | ||
1274 | let (c, d) = (1, "hello"); | ||
1275 | |||
1276 | for (e, f) in some_iter { | ||
1277 | let g = e; | ||
1278 | } | ||
1279 | |||
1280 | if let [val] = opt { | ||
1281 | let h = val; | ||
1282 | } | ||
1283 | |||
1284 | let lambda = |a: u64, b, c: i32| { a + b; c }; | ||
1285 | |||
1286 | let ref ref_to_x = x; | ||
1287 | let mut mut_x = x; | ||
1288 | let ref mut mut_ref_to_x = x; | ||
1289 | let k = mut_ref_to_x; | ||
1290 | } | ||
1291 | "#), | ||
1292 | @r###" | ||
1293 | [9; 10) 'x': &i32 | ||
1294 | [18; 369) '{ ...o_x; }': () | ||
1295 | [28; 29) 'y': &i32 | ||
1296 | [32; 33) 'x': &i32 | ||
1297 | [43; 45) '&z': &i32 | ||
1298 | [44; 45) 'z': i32 | ||
1299 | [48; 49) 'x': &i32 | ||
1300 | [59; 60) 'a': i32 | ||
1301 | [63; 64) 'z': i32 | ||
1302 | [74; 80) '(c, d)': (i32, &str) | ||
1303 | [75; 76) 'c': i32 | ||
1304 | [78; 79) 'd': &str | ||
1305 | [83; 95) '(1, "hello")': (i32, &str) | ||
1306 | [84; 85) '1': i32 | ||
1307 | [87; 94) '"hello"': &str | ||
1308 | [102; 152) 'for (e... }': () | ||
1309 | [106; 112) '(e, f)': ({unknown}, {unknown}) | ||
1310 | [107; 108) 'e': {unknown} | ||
1311 | [110; 111) 'f': {unknown} | ||
1312 | [116; 125) 'some_iter': {unknown} | ||
1313 | [126; 152) '{ ... }': () | ||
1314 | [140; 141) 'g': {unknown} | ||
1315 | [144; 145) 'e': {unknown} | ||
1316 | [158; 205) 'if let... }': () | ||
1317 | [165; 170) '[val]': {unknown} | ||
1318 | [173; 176) 'opt': {unknown} | ||
1319 | [177; 205) '{ ... }': () | ||
1320 | [191; 192) 'h': {unknown} | ||
1321 | [195; 198) 'val': {unknown} | ||
1322 | [215; 221) 'lambda': |u64, u64, i32| -> i32 | ||
1323 | [224; 256) '|a: u6...b; c }': |u64, u64, i32| -> i32 | ||
1324 | [225; 226) 'a': u64 | ||
1325 | [233; 234) 'b': u64 | ||
1326 | [236; 237) 'c': i32 | ||
1327 | [244; 256) '{ a + b; c }': i32 | ||
1328 | [246; 247) 'a': u64 | ||
1329 | [246; 251) 'a + b': u64 | ||
1330 | [250; 251) 'b': u64 | ||
1331 | [253; 254) 'c': i32 | ||
1332 | [267; 279) 'ref ref_to_x': &&i32 | ||
1333 | [282; 283) 'x': &i32 | ||
1334 | [293; 302) 'mut mut_x': &i32 | ||
1335 | [305; 306) 'x': &i32 | ||
1336 | [316; 336) 'ref mu...f_to_x': &mut &i32 | ||
1337 | [339; 340) 'x': &i32 | ||
1338 | [350; 351) 'k': &mut &i32 | ||
1339 | [354; 366) 'mut_ref_to_x': &mut &i32 | ||
1340 | "### | ||
1341 | ); | ||
1342 | } | ||
1343 | |||
1344 | #[test] | ||
1345 | fn infer_pattern_match_ergonomics() { | ||
1346 | assert_snapshot!( | ||
1347 | infer(r#" | ||
1348 | struct A<T>(T); | ||
1349 | |||
1350 | fn test() { | ||
1351 | let A(n) = &A(1); | ||
1352 | let A(n) = &mut A(1); | ||
1353 | } | ||
1354 | "#), | ||
1355 | @r###" | ||
1356 | [28; 79) '{ ...(1); }': () | ||
1357 | [38; 42) 'A(n)': A<i32> | ||
1358 | [40; 41) 'n': &i32 | ||
1359 | [45; 50) '&A(1)': &A<i32> | ||
1360 | [46; 47) 'A': A<i32>(T) -> A<T> | ||
1361 | [46; 50) 'A(1)': A<i32> | ||
1362 | [48; 49) '1': i32 | ||
1363 | [60; 64) 'A(n)': A<i32> | ||
1364 | [62; 63) 'n': &mut i32 | ||
1365 | [67; 76) '&mut A(1)': &mut A<i32> | ||
1366 | [72; 73) 'A': A<i32>(T) -> A<T> | ||
1367 | [72; 76) 'A(1)': A<i32> | ||
1368 | [74; 75) '1': i32 | ||
1369 | "### | ||
1370 | ); | ||
1371 | } | ||
1372 | |||
1373 | #[test] | ||
1374 | fn infer_pattern_match_ergonomics_ref() { | ||
1375 | covers!(match_ergonomics_ref); | ||
1376 | assert_snapshot!( | ||
1377 | infer(r#" | ||
1378 | fn test() { | ||
1379 | let v = &(1, &2); | ||
1380 | let (_, &w) = v; | ||
1381 | } | ||
1382 | "#), | ||
1383 | @r###" | ||
1384 | [11; 57) '{ ...= v; }': () | ||
1385 | [21; 22) 'v': &(i32, &i32) | ||
1386 | [25; 33) '&(1, &2)': &(i32, &i32) | ||
1387 | [26; 33) '(1, &2)': (i32, &i32) | ||
1388 | [27; 28) '1': i32 | ||
1389 | [30; 32) '&2': &i32 | ||
1390 | [31; 32) '2': i32 | ||
1391 | [43; 50) '(_, &w)': (i32, &i32) | ||
1392 | [44; 45) '_': i32 | ||
1393 | [47; 49) '&w': &i32 | ||
1394 | [48; 49) 'w': i32 | ||
1395 | [53; 54) 'v': &(i32, &i32) | ||
1396 | "### | ||
1397 | ); | ||
1398 | } | ||
1399 | |||
1400 | #[test] | ||
1401 | fn infer_adt_pattern() { | ||
1402 | assert_snapshot!( | ||
1403 | infer(r#" | ||
1404 | enum E { | ||
1405 | A { x: usize }, | ||
1406 | B | ||
1407 | } | ||
1408 | |||
1409 | struct S(u32, E); | ||
1410 | |||
1411 | fn test() { | ||
1412 | let e = E::A { x: 3 }; | ||
1413 | |||
1414 | let S(y, z) = foo; | ||
1415 | let E::A { x: new_var } = e; | ||
1416 | |||
1417 | match e { | ||
1418 | E::A { x } => x, | ||
1419 | E::B if foo => 1, | ||
1420 | E::B => 10, | ||
1421 | }; | ||
1422 | |||
1423 | let ref d @ E::A { .. } = e; | ||
1424 | d; | ||
1425 | } | ||
1426 | "#), | ||
1427 | @r###" | ||
1428 | [68; 289) '{ ... d; }': () | ||
1429 | [78; 79) 'e': E | ||
1430 | [82; 95) 'E::A { x: 3 }': E | ||
1431 | [92; 93) '3': usize | ||
1432 | [106; 113) 'S(y, z)': S | ||
1433 | [108; 109) 'y': u32 | ||
1434 | [111; 112) 'z': E | ||
1435 | [116; 119) 'foo': S | ||
1436 | [129; 148) 'E::A {..._var }': E | ||
1437 | [139; 146) 'new_var': usize | ||
1438 | [151; 152) 'e': E | ||
1439 | [159; 245) 'match ... }': usize | ||
1440 | [165; 166) 'e': E | ||
1441 | [177; 187) 'E::A { x }': E | ||
1442 | [184; 185) 'x': usize | ||
1443 | [191; 192) 'x': usize | ||
1444 | [202; 206) 'E::B': E | ||
1445 | [210; 213) 'foo': bool | ||
1446 | [217; 218) '1': usize | ||
1447 | [228; 232) 'E::B': E | ||
1448 | [236; 238) '10': usize | ||
1449 | [256; 275) 'ref d ...{ .. }': &E | ||
1450 | [264; 275) 'E::A { .. }': E | ||
1451 | [278; 279) 'e': E | ||
1452 | [285; 286) 'd': &E | ||
1453 | "### | ||
1454 | ); | ||
1455 | } | ||
1456 | |||
1457 | #[test] | ||
1458 | fn infer_struct_generics() { | ||
1459 | assert_snapshot!( | ||
1460 | infer(r#" | ||
1461 | struct A<T> { | ||
1462 | x: T, | ||
1463 | } | ||
1464 | |||
1465 | fn test(a1: A<u32>, i: i32) { | ||
1466 | a1.x; | ||
1467 | let a2 = A { x: i }; | ||
1468 | a2.x; | ||
1469 | let a3 = A::<i128> { x: 1 }; | ||
1470 | a3.x; | ||
1471 | } | ||
1472 | "#), | ||
1473 | @r###" | ||
1474 | [36; 38) 'a1': A<u32> | ||
1475 | [48; 49) 'i': i32 | ||
1476 | [56; 147) '{ ...3.x; }': () | ||
1477 | [62; 64) 'a1': A<u32> | ||
1478 | [62; 66) 'a1.x': u32 | ||
1479 | [76; 78) 'a2': A<i32> | ||
1480 | [81; 91) 'A { x: i }': A<i32> | ||
1481 | [88; 89) 'i': i32 | ||
1482 | [97; 99) 'a2': A<i32> | ||
1483 | [97; 101) 'a2.x': i32 | ||
1484 | [111; 113) 'a3': A<i128> | ||
1485 | [116; 134) 'A::<i1...x: 1 }': A<i128> | ||
1486 | [131; 132) '1': i128 | ||
1487 | [140; 142) 'a3': A<i128> | ||
1488 | [140; 144) 'a3.x': i128 | ||
1489 | "### | ||
1490 | ); | ||
1491 | } | ||
1492 | |||
1493 | #[test] | ||
1494 | fn infer_tuple_struct_generics() { | ||
1495 | assert_snapshot!( | ||
1496 | infer(r#" | ||
1497 | struct A<T>(T); | ||
1498 | enum Option<T> { Some(T), None } | ||
1499 | use Option::*; | ||
1500 | |||
1501 | fn test() { | ||
1502 | A(42); | ||
1503 | A(42u128); | ||
1504 | Some("x"); | ||
1505 | Option::Some("x"); | ||
1506 | None; | ||
1507 | let x: Option<i64> = None; | ||
1508 | } | ||
1509 | "#), | ||
1510 | @r###" | ||
1511 | [76; 184) '{ ...one; }': () | ||
1512 | [82; 83) 'A': A<i32>(T) -> A<T> | ||
1513 | [82; 87) 'A(42)': A<i32> | ||
1514 | [84; 86) '42': i32 | ||
1515 | [93; 94) 'A': A<u128>(T) -> A<T> | ||
1516 | [93; 102) 'A(42u128)': A<u128> | ||
1517 | [95; 101) '42u128': u128 | ||
1518 | [108; 112) 'Some': Some<&str>(T) -> Option<T> | ||
1519 | [108; 117) 'Some("x")': Option<&str> | ||
1520 | [113; 116) '"x"': &str | ||
1521 | [123; 135) 'Option::Some': Some<&str>(T) -> Option<T> | ||
1522 | [123; 140) 'Option...e("x")': Option<&str> | ||
1523 | [136; 139) '"x"': &str | ||
1524 | [146; 150) 'None': Option<{unknown}> | ||
1525 | [160; 161) 'x': Option<i64> | ||
1526 | [177; 181) 'None': Option<i64> | ||
1527 | "### | ||
1528 | ); | ||
1529 | } | ||
1530 | |||
1531 | #[test] | ||
1532 | fn infer_generics_in_patterns() { | ||
1533 | assert_snapshot!( | ||
1534 | infer(r#" | ||
1535 | struct A<T> { | ||
1536 | x: T, | ||
1537 | } | ||
1538 | |||
1539 | enum Option<T> { | ||
1540 | Some(T), | ||
1541 | None, | ||
1542 | } | ||
1543 | |||
1544 | fn test(a1: A<u32>, o: Option<u64>) { | ||
1545 | let A { x: x2 } = a1; | ||
1546 | let A::<i64> { x: x3 } = A { x: 1 }; | ||
1547 | match o { | ||
1548 | Option::Some(t) => t, | ||
1549 | _ => 1, | ||
1550 | }; | ||
1551 | } | ||
1552 | "#), | ||
1553 | @r###" | ||
1554 | [79; 81) 'a1': A<u32> | ||
1555 | [91; 92) 'o': Option<u64> | ||
1556 | [107; 244) '{ ... }; }': () | ||
1557 | [117; 128) 'A { x: x2 }': A<u32> | ||
1558 | [124; 126) 'x2': u32 | ||
1559 | [131; 133) 'a1': A<u32> | ||
1560 | [143; 161) 'A::<i6...: x3 }': A<i64> | ||
1561 | [157; 159) 'x3': i64 | ||
1562 | [164; 174) 'A { x: 1 }': A<i64> | ||
1563 | [171; 172) '1': i64 | ||
1564 | [180; 241) 'match ... }': u64 | ||
1565 | [186; 187) 'o': Option<u64> | ||
1566 | [198; 213) 'Option::Some(t)': Option<u64> | ||
1567 | [211; 212) 't': u64 | ||
1568 | [217; 218) 't': u64 | ||
1569 | [228; 229) '_': Option<u64> | ||
1570 | [233; 234) '1': u64 | ||
1571 | "### | ||
1572 | ); | ||
1573 | } | ||
1574 | |||
1575 | #[test] | ||
1576 | fn infer_function_generics() { | ||
1577 | assert_snapshot!( | ||
1578 | infer(r#" | ||
1579 | fn id<T>(t: T) -> T { t } | ||
1580 | |||
1581 | fn test() { | ||
1582 | id(1u32); | ||
1583 | id::<i128>(1); | ||
1584 | let x: u64 = id(1); | ||
1585 | } | ||
1586 | "#), | ||
1587 | @r###" | ||
1588 | [10; 11) 't': T | ||
1589 | [21; 26) '{ t }': T | ||
1590 | [23; 24) 't': T | ||
1591 | [38; 98) '{ ...(1); }': () | ||
1592 | [44; 46) 'id': fn id<u32>(T) -> T | ||
1593 | [44; 52) 'id(1u32)': u32 | ||
1594 | [47; 51) '1u32': u32 | ||
1595 | [58; 68) 'id::<i128>': fn id<i128>(T) -> T | ||
1596 | [58; 71) 'id::<i128>(1)': i128 | ||
1597 | [69; 70) '1': i128 | ||
1598 | [81; 82) 'x': u64 | ||
1599 | [90; 92) 'id': fn id<u64>(T) -> T | ||
1600 | [90; 95) 'id(1)': u64 | ||
1601 | [93; 94) '1': u64 | ||
1602 | "### | ||
1603 | ); | ||
1604 | } | ||
1605 | |||
1606 | #[test] | ||
1607 | fn infer_impl_generics() { | ||
1608 | assert_snapshot!( | ||
1609 | infer(r#" | ||
1610 | struct A<T1, T2> { | ||
1611 | x: T1, | ||
1612 | y: T2, | ||
1613 | } | ||
1614 | impl<Y, X> A<X, Y> { | ||
1615 | fn x(self) -> X { | ||
1616 | self.x | ||
1617 | } | ||
1618 | fn y(self) -> Y { | ||
1619 | self.y | ||
1620 | } | ||
1621 | fn z<T>(self, t: T) -> (X, Y, T) { | ||
1622 | (self.x, self.y, t) | ||
1623 | } | ||
1624 | } | ||
1625 | |||
1626 | fn test() -> i128 { | ||
1627 | let a = A { x: 1u64, y: 1i64 }; | ||
1628 | a.x(); | ||
1629 | a.y(); | ||
1630 | a.z(1i128); | ||
1631 | a.z::<u128>(1); | ||
1632 | } | ||
1633 | "#), | ||
1634 | @r###" | ||
1635 | [74; 78) 'self': A<X, Y> | ||
1636 | [85; 107) '{ ... }': X | ||
1637 | [95; 99) 'self': A<X, Y> | ||
1638 | [95; 101) 'self.x': X | ||
1639 | [117; 121) 'self': A<X, Y> | ||
1640 | [128; 150) '{ ... }': Y | ||
1641 | [138; 142) 'self': A<X, Y> | ||
1642 | [138; 144) 'self.y': Y | ||
1643 | [163; 167) 'self': A<X, Y> | ||
1644 | [169; 170) 't': T | ||
1645 | [188; 223) '{ ... }': (X, Y, T) | ||
1646 | [198; 217) '(self.....y, t)': (X, Y, T) | ||
1647 | [199; 203) 'self': A<X, Y> | ||
1648 | [199; 205) 'self.x': X | ||
1649 | [207; 211) 'self': A<X, Y> | ||
1650 | [207; 213) 'self.y': Y | ||
1651 | [215; 216) 't': T | ||
1652 | [245; 342) '{ ...(1); }': () | ||
1653 | [255; 256) 'a': A<u64, i64> | ||
1654 | [259; 281) 'A { x:...1i64 }': A<u64, i64> | ||
1655 | [266; 270) '1u64': u64 | ||
1656 | [275; 279) '1i64': i64 | ||
1657 | [287; 288) 'a': A<u64, i64> | ||
1658 | [287; 292) 'a.x()': u64 | ||
1659 | [298; 299) 'a': A<u64, i64> | ||
1660 | [298; 303) 'a.y()': i64 | ||
1661 | [309; 310) 'a': A<u64, i64> | ||
1662 | [309; 319) 'a.z(1i128)': (u64, i64, i128) | ||
1663 | [313; 318) '1i128': i128 | ||
1664 | [325; 326) 'a': A<u64, i64> | ||
1665 | [325; 339) 'a.z::<u128>(1)': (u64, i64, u128) | ||
1666 | [337; 338) '1': u128 | ||
1667 | "### | ||
1668 | ); | ||
1669 | } | ||
1670 | |||
1671 | #[test] | ||
1672 | fn infer_impl_generics_with_autoderef() { | ||
1673 | assert_snapshot!( | ||
1674 | infer(r#" | ||
1675 | enum Option<T> { | ||
1676 | Some(T), | ||
1677 | None, | ||
1678 | } | ||
1679 | impl<T> Option<T> { | ||
1680 | fn as_ref(&self) -> Option<&T> {} | ||
1681 | } | ||
1682 | fn test(o: Option<u32>) { | ||
1683 | (&o).as_ref(); | ||
1684 | o.as_ref(); | ||
1685 | } | ||
1686 | "#), | ||
1687 | @r###" | ||
1688 | [78; 82) 'self': &Option<T> | ||
1689 | [98; 100) '{}': () | ||
1690 | [111; 112) 'o': Option<u32> | ||
1691 | [127; 165) '{ ...f(); }': () | ||
1692 | [133; 146) '(&o).as_ref()': Option<&u32> | ||
1693 | [134; 136) '&o': &Option<u32> | ||
1694 | [135; 136) 'o': Option<u32> | ||
1695 | [152; 153) 'o': Option<u32> | ||
1696 | [152; 162) 'o.as_ref()': Option<&u32> | ||
1697 | "### | ||
1698 | ); | ||
1699 | } | ||
1700 | |||
1701 | #[test] | ||
1702 | fn infer_generic_chain() { | ||
1703 | assert_snapshot!( | ||
1704 | infer(r#" | ||
1705 | struct A<T> { | ||
1706 | x: T, | ||
1707 | } | ||
1708 | impl<T2> A<T2> { | ||
1709 | fn x(self) -> T2 { | ||
1710 | self.x | ||
1711 | } | ||
1712 | } | ||
1713 | fn id<T>(t: T) -> T { t } | ||
1714 | |||
1715 | fn test() -> i128 { | ||
1716 | let x = 1; | ||
1717 | let y = id(x); | ||
1718 | let a = A { x: id(y) }; | ||
1719 | let z = id(a.x); | ||
1720 | let b = A { x: z }; | ||
1721 | b.x() | ||
1722 | } | ||
1723 | "#), | ||
1724 | @r###" | ||
1725 | [53; 57) 'self': A<T2> | ||
1726 | [65; 87) '{ ... }': T2 | ||
1727 | [75; 79) 'self': A<T2> | ||
1728 | [75; 81) 'self.x': T2 | ||
1729 | [99; 100) 't': T | ||
1730 | [110; 115) '{ t }': T | ||
1731 | [112; 113) 't': T | ||
1732 | [135; 261) '{ ....x() }': i128 | ||
1733 | [146; 147) 'x': i128 | ||
1734 | [150; 151) '1': i128 | ||
1735 | [162; 163) 'y': i128 | ||
1736 | [166; 168) 'id': fn id<i128>(T) -> T | ||
1737 | [166; 171) 'id(x)': i128 | ||
1738 | [169; 170) 'x': i128 | ||
1739 | [182; 183) 'a': A<i128> | ||
1740 | [186; 200) 'A { x: id(y) }': A<i128> | ||
1741 | [193; 195) 'id': fn id<i128>(T) -> T | ||
1742 | [193; 198) 'id(y)': i128 | ||
1743 | [196; 197) 'y': i128 | ||
1744 | [211; 212) 'z': i128 | ||
1745 | [215; 217) 'id': fn id<i128>(T) -> T | ||
1746 | [215; 222) 'id(a.x)': i128 | ||
1747 | [218; 219) 'a': A<i128> | ||
1748 | [218; 221) 'a.x': i128 | ||
1749 | [233; 234) 'b': A<i128> | ||
1750 | [237; 247) 'A { x: z }': A<i128> | ||
1751 | [244; 245) 'z': i128 | ||
1752 | [254; 255) 'b': A<i128> | ||
1753 | [254; 259) 'b.x()': i128 | ||
1754 | "### | ||
1755 | ); | ||
1756 | } | ||
1757 | |||
1758 | #[test] | ||
1759 | fn infer_associated_const() { | ||
1760 | assert_snapshot!( | ||
1761 | infer(r#" | ||
1762 | struct Struct; | ||
1763 | |||
1764 | impl Struct { | ||
1765 | const FOO: u32 = 1; | ||
1766 | } | ||
1767 | |||
1768 | enum Enum {} | ||
1769 | |||
1770 | impl Enum { | ||
1771 | const BAR: u32 = 2; | ||
1772 | } | ||
1773 | |||
1774 | trait Trait { | ||
1775 | const ID: u32; | ||
1776 | } | ||
1777 | |||
1778 | struct TraitTest; | ||
1779 | |||
1780 | impl Trait for TraitTest { | ||
1781 | const ID: u32 = 5; | ||
1782 | } | ||
1783 | |||
1784 | fn test() { | ||
1785 | let x = Struct::FOO; | ||
1786 | let y = Enum::BAR; | ||
1787 | let z = TraitTest::ID; | ||
1788 | } | ||
1789 | "#), | ||
1790 | @r###" | ||
1791 | [52; 53) '1': u32 | ||
1792 | [105; 106) '2': u32 | ||
1793 | [213; 214) '5': u32 | ||
1794 | [229; 307) '{ ...:ID; }': () | ||
1795 | [239; 240) 'x': u32 | ||
1796 | [243; 254) 'Struct::FOO': u32 | ||
1797 | [264; 265) 'y': u32 | ||
1798 | [268; 277) 'Enum::BAR': u32 | ||
1799 | [287; 288) 'z': u32 | ||
1800 | [291; 304) 'TraitTest::ID': u32 | ||
1801 | "### | ||
1802 | ); | ||
1803 | } | ||
1804 | |||
1805 | #[test] | ||
1806 | fn infer_associated_method_struct() { | ||
1807 | assert_snapshot!( | ||
1808 | infer(r#" | ||
1809 | struct A { x: u32 } | ||
1810 | |||
1811 | impl A { | ||
1812 | fn new() -> A { | ||
1813 | A { x: 0 } | ||
1814 | } | ||
1815 | } | ||
1816 | fn test() { | ||
1817 | let a = A::new(); | ||
1818 | a.x; | ||
1819 | } | ||
1820 | "#), | ||
1821 | @r###" | ||
1822 | [49; 75) '{ ... }': A | ||
1823 | [59; 69) 'A { x: 0 }': A | ||
1824 | [66; 67) '0': u32 | ||
1825 | [88; 122) '{ ...a.x; }': () | ||
1826 | [98; 99) 'a': A | ||
1827 | [102; 108) 'A::new': fn new() -> A | ||
1828 | [102; 110) 'A::new()': A | ||
1829 | [116; 117) 'a': A | ||
1830 | [116; 119) 'a.x': u32 | ||
1831 | "### | ||
1832 | ); | ||
1833 | } | ||
1834 | |||
1835 | #[test] | ||
1836 | fn infer_associated_method_enum() { | ||
1837 | assert_snapshot!( | ||
1838 | infer(r#" | ||
1839 | enum A { B, C } | ||
1840 | |||
1841 | impl A { | ||
1842 | pub fn b() -> A { | ||
1843 | A::B | ||
1844 | } | ||
1845 | pub fn c() -> A { | ||
1846 | A::C | ||
1847 | } | ||
1848 | } | ||
1849 | fn test() { | ||
1850 | let a = A::b(); | ||
1851 | a; | ||
1852 | let c = A::c(); | ||
1853 | c; | ||
1854 | } | ||
1855 | "#), | ||
1856 | @r###" | ||
1857 | [47; 67) '{ ... }': A | ||
1858 | [57; 61) 'A::B': A | ||
1859 | [88; 108) '{ ... }': A | ||
1860 | [98; 102) 'A::C': A | ||
1861 | [121; 178) '{ ... c; }': () | ||
1862 | [131; 132) 'a': A | ||
1863 | [135; 139) 'A::b': fn b() -> A | ||
1864 | [135; 141) 'A::b()': A | ||
1865 | [147; 148) 'a': A | ||
1866 | [158; 159) 'c': A | ||
1867 | [162; 166) 'A::c': fn c() -> A | ||
1868 | [162; 168) 'A::c()': A | ||
1869 | [174; 175) 'c': A | ||
1870 | "### | ||
1871 | ); | ||
1872 | } | ||
1873 | |||
1874 | #[test] | ||
1875 | fn infer_associated_method_with_modules() { | ||
1876 | assert_snapshot!( | ||
1877 | infer(r#" | ||
1878 | mod a { | ||
1879 | struct A; | ||
1880 | impl A { pub fn thing() -> A { A {} }} | ||
1881 | } | ||
1882 | |||
1883 | mod b { | ||
1884 | struct B; | ||
1885 | impl B { pub fn thing() -> u32 { 99 }} | ||
1886 | |||
1887 | mod c { | ||
1888 | struct C; | ||
1889 | impl C { pub fn thing() -> C { C {} }} | ||
1890 | } | ||
1891 | } | ||
1892 | use b::c; | ||
1893 | |||
1894 | fn test() { | ||
1895 | let x = a::A::thing(); | ||
1896 | let y = b::B::thing(); | ||
1897 | let z = c::C::thing(); | ||
1898 | } | ||
1899 | "#), | ||
1900 | @r###" | ||
1901 | [56; 64) '{ A {} }': A | ||
1902 | [58; 62) 'A {}': A | ||
1903 | [126; 132) '{ 99 }': u32 | ||
1904 | [128; 130) '99': u32 | ||
1905 | [202; 210) '{ C {} }': C | ||
1906 | [204; 208) 'C {}': C | ||
1907 | [241; 325) '{ ...g(); }': () | ||
1908 | [251; 252) 'x': A | ||
1909 | [255; 266) 'a::A::thing': fn thing() -> A | ||
1910 | [255; 268) 'a::A::thing()': A | ||
1911 | [278; 279) 'y': u32 | ||
1912 | [282; 293) 'b::B::thing': fn thing() -> u32 | ||
1913 | [282; 295) 'b::B::thing()': u32 | ||
1914 | [305; 306) 'z': C | ||
1915 | [309; 320) 'c::C::thing': fn thing() -> C | ||
1916 | [309; 322) 'c::C::thing()': C | ||
1917 | "### | ||
1918 | ); | ||
1919 | } | ||
1920 | |||
1921 | #[test] | ||
1922 | fn infer_associated_method_generics() { | ||
1923 | assert_snapshot!( | ||
1924 | infer(r#" | ||
1925 | struct Gen<T> { | ||
1926 | val: T | ||
1927 | } | ||
1928 | |||
1929 | impl<T> Gen<T> { | ||
1930 | pub fn make(val: T) -> Gen<T> { | ||
1931 | Gen { val } | ||
1932 | } | ||
1933 | } | ||
1934 | |||
1935 | fn test() { | ||
1936 | let a = Gen::make(0u32); | ||
1937 | } | ||
1938 | "#), | ||
1939 | @r###" | ||
1940 | [64; 67) 'val': T | ||
1941 | [82; 109) '{ ... }': Gen<T> | ||
1942 | [92; 103) 'Gen { val }': Gen<T> | ||
1943 | [98; 101) 'val': T | ||
1944 | [123; 155) '{ ...32); }': () | ||
1945 | [133; 134) 'a': Gen<u32> | ||
1946 | [137; 146) 'Gen::make': fn make<u32>(T) -> Gen<T> | ||
1947 | [137; 152) 'Gen::make(0u32)': Gen<u32> | ||
1948 | [147; 151) '0u32': u32 | ||
1949 | "### | ||
1950 | ); | ||
1951 | } | ||
1952 | |||
1953 | #[test] | ||
1954 | fn infer_associated_method_generics_with_default_param() { | ||
1955 | assert_snapshot!( | ||
1956 | infer(r#" | ||
1957 | struct Gen<T=u32> { | ||
1958 | val: T | ||
1959 | } | ||
1960 | |||
1961 | impl<T> Gen<T> { | ||
1962 | pub fn make() -> Gen<T> { | ||
1963 | loop { } | ||
1964 | } | ||
1965 | } | ||
1966 | |||
1967 | fn test() { | ||
1968 | let a = Gen::make(); | ||
1969 | } | ||
1970 | "#), | ||
1971 | @r###" | ||
1972 | [80; 104) '{ ... }': Gen<T> | ||
1973 | [90; 98) 'loop { }': ! | ||
1974 | [95; 98) '{ }': () | ||
1975 | [118; 146) '{ ...e(); }': () | ||
1976 | [128; 129) 'a': Gen<u32> | ||
1977 | [132; 141) 'Gen::make': fn make<u32>() -> Gen<T> | ||
1978 | [132; 143) 'Gen::make()': Gen<u32> | ||
1979 | "### | ||
1980 | ); | ||
1981 | } | ||
1982 | |||
1983 | #[test] | ||
1984 | fn infer_associated_method_generics_with_default_tuple_param() { | ||
1985 | let t = type_at( | ||
1986 | r#" | ||
1987 | //- /main.rs | ||
1988 | struct Gen<T=()> { | ||
1989 | val: T | ||
1990 | } | ||
1991 | |||
1992 | impl<T> Gen<T> { | ||
1993 | pub fn make() -> Gen<T> { | ||
1994 | loop { } | ||
1995 | } | ||
1996 | } | ||
1997 | |||
1998 | fn test() { | ||
1999 | let a = Gen::make(); | ||
2000 | a.val<|>; | ||
2001 | } | ||
2002 | "#, | ||
2003 | ); | ||
2004 | assert_eq!(t, "()"); | ||
2005 | } | ||
2006 | |||
2007 | #[test] | ||
2008 | fn infer_associated_method_generics_without_args() { | ||
2009 | assert_snapshot!( | ||
2010 | infer(r#" | ||
2011 | struct Gen<T> { | ||
2012 | val: T | ||
2013 | } | ||
2014 | |||
2015 | impl<T> Gen<T> { | ||
2016 | pub fn make() -> Gen<T> { | ||
2017 | loop { } | ||
2018 | } | ||
2019 | } | ||
2020 | |||
2021 | fn test() { | ||
2022 | let a = Gen::<u32>::make(); | ||
2023 | } | ||
2024 | "#), | ||
2025 | @r###" | ||
2026 | [76; 100) '{ ... }': Gen<T> | ||
2027 | [86; 94) 'loop { }': ! | ||
2028 | [91; 94) '{ }': () | ||
2029 | [114; 149) '{ ...e(); }': () | ||
2030 | [124; 125) 'a': Gen<u32> | ||
2031 | [128; 144) 'Gen::<...::make': fn make<u32>() -> Gen<T> | ||
2032 | [128; 146) 'Gen::<...make()': Gen<u32> | ||
2033 | "### | ||
2034 | ); | ||
2035 | } | ||
2036 | |||
2037 | #[test] | ||
2038 | fn infer_associated_method_generics_2_type_params_without_args() { | ||
2039 | assert_snapshot!( | ||
2040 | infer(r#" | ||
2041 | struct Gen<T, U> { | ||
2042 | val: T, | ||
2043 | val2: U, | ||
2044 | } | ||
2045 | |||
2046 | impl<T> Gen<u32, T> { | ||
2047 | pub fn make() -> Gen<u32,T> { | ||
2048 | loop { } | ||
2049 | } | ||
2050 | } | ||
2051 | |||
2052 | fn test() { | ||
2053 | let a = Gen::<u32, u64>::make(); | ||
2054 | } | ||
2055 | "#), | ||
2056 | @r###" | ||
2057 | [102; 126) '{ ... }': Gen<u32, T> | ||
2058 | [112; 120) 'loop { }': ! | ||
2059 | [117; 120) '{ }': () | ||
2060 | [140; 180) '{ ...e(); }': () | ||
2061 | [150; 151) 'a': Gen<u32, u64> | ||
2062 | [154; 175) 'Gen::<...::make': fn make<u64>() -> Gen<u32, T> | ||
2063 | [154; 177) 'Gen::<...make()': Gen<u32, u64> | ||
2064 | "### | ||
2065 | ); | ||
2066 | } | ||
2067 | |||
2068 | #[test] | ||
2069 | fn infer_type_alias() { | ||
2070 | assert_snapshot!( | ||
2071 | infer(r#" | ||
2072 | struct A<X, Y> { x: X, y: Y } | ||
2073 | type Foo = A<u32, i128>; | ||
2074 | type Bar<T> = A<T, u128>; | ||
2075 | type Baz<U, V> = A<V, U>; | ||
2076 | fn test(x: Foo, y: Bar<&str>, z: Baz<i8, u8>) { | ||
2077 | x.x; | ||
2078 | x.y; | ||
2079 | y.x; | ||
2080 | y.y; | ||
2081 | z.x; | ||
2082 | z.y; | ||
2083 | } | ||
2084 | "#), | ||
2085 | @r###" | ||
2086 | [116; 117) 'x': A<u32, i128> | ||
2087 | [124; 125) 'y': A<&str, u128> | ||
2088 | [138; 139) 'z': A<u8, i8> | ||
2089 | [154; 211) '{ ...z.y; }': () | ||
2090 | [160; 161) 'x': A<u32, i128> | ||
2091 | [160; 163) 'x.x': u32 | ||
2092 | [169; 170) 'x': A<u32, i128> | ||
2093 | [169; 172) 'x.y': i128 | ||
2094 | [178; 179) 'y': A<&str, u128> | ||
2095 | [178; 181) 'y.x': &str | ||
2096 | [187; 188) 'y': A<&str, u128> | ||
2097 | [187; 190) 'y.y': u128 | ||
2098 | [196; 197) 'z': A<u8, i8> | ||
2099 | [196; 199) 'z.x': u8 | ||
2100 | [205; 206) 'z': A<u8, i8> | ||
2101 | [205; 208) 'z.y': i8 | ||
2102 | "### | ||
2103 | ) | ||
2104 | } | ||
2105 | |||
2106 | #[test] | ||
2107 | #[should_panic] // we currently can't handle this | ||
2108 | fn recursive_type_alias() { | ||
2109 | assert_snapshot!( | ||
2110 | infer(r#" | ||
2111 | struct A<X> {} | ||
2112 | type Foo = Foo; | ||
2113 | type Bar = A<Bar>; | ||
2114 | fn test(x: Foo) {} | ||
2115 | "#), | ||
2116 | @"" | ||
2117 | ) | ||
2118 | } | ||
2119 | |||
2120 | #[test] | ||
2121 | fn no_panic_on_field_of_enum() { | ||
2122 | assert_snapshot!( | ||
2123 | infer(r#" | ||
2124 | enum X {} | ||
2125 | |||
2126 | fn test(x: X) { | ||
2127 | x.some_field; | ||
2128 | } | ||
2129 | "#), | ||
2130 | @r###" | ||
2131 | [20; 21) 'x': X | ||
2132 | [26; 47) '{ ...eld; }': () | ||
2133 | [32; 33) 'x': X | ||
2134 | [32; 44) 'x.some_field': {unknown} | ||
2135 | "### | ||
2136 | ); | ||
2137 | } | ||
2138 | |||
2139 | #[test] | ||
2140 | fn bug_585() { | ||
2141 | assert_snapshot!( | ||
2142 | infer(r#" | ||
2143 | fn test() { | ||
2144 | X {}; | ||
2145 | match x { | ||
2146 | A::B {} => (), | ||
2147 | A::Y() => (), | ||
2148 | } | ||
2149 | } | ||
2150 | "#), | ||
2151 | @r###" | ||
2152 | [11; 89) '{ ... } }': () | ||
2153 | [17; 21) 'X {}': {unknown} | ||
2154 | [27; 87) 'match ... }': () | ||
2155 | [33; 34) 'x': {unknown} | ||
2156 | [45; 52) 'A::B {}': {unknown} | ||
2157 | [56; 58) '()': () | ||
2158 | [68; 74) 'A::Y()': {unknown} | ||
2159 | [78; 80) '()': () | ||
2160 | "### | ||
2161 | ); | ||
2162 | } | ||
2163 | |||
2164 | #[test] | ||
2165 | fn bug_651() { | ||
2166 | assert_snapshot!( | ||
2167 | infer(r#" | ||
2168 | fn quux() { | ||
2169 | let y = 92; | ||
2170 | 1 + y; | ||
2171 | } | ||
2172 | "#), | ||
2173 | @r###" | ||
2174 | [11; 41) '{ ...+ y; }': () | ||
2175 | [21; 22) 'y': i32 | ||
2176 | [25; 27) '92': i32 | ||
2177 | [33; 34) '1': i32 | ||
2178 | [33; 38) '1 + y': i32 | ||
2179 | [37; 38) 'y': i32 | ||
2180 | "### | ||
2181 | ); | ||
2182 | } | ||
2183 | |||
2184 | #[test] | ||
2185 | fn recursive_vars() { | ||
2186 | covers!(type_var_cycles_resolve_completely); | ||
2187 | covers!(type_var_cycles_resolve_as_possible); | ||
2188 | assert_snapshot!( | ||
2189 | infer(r#" | ||
2190 | fn test() { | ||
2191 | let y = unknown; | ||
2192 | [y, &y]; | ||
2193 | } | ||
2194 | "#), | ||
2195 | @r###" | ||
2196 | [11; 48) '{ ...&y]; }': () | ||
2197 | [21; 22) 'y': &{unknown} | ||
2198 | [25; 32) 'unknown': &{unknown} | ||
2199 | [38; 45) '[y, &y]': [&&{unknown};_] | ||
2200 | [39; 40) 'y': &{unknown} | ||
2201 | [42; 44) '&y': &&{unknown} | ||
2202 | [43; 44) 'y': &{unknown} | ||
2203 | "### | ||
2204 | ); | ||
2205 | } | ||
2206 | |||
2207 | #[test] | ||
2208 | fn recursive_vars_2() { | ||
2209 | covers!(type_var_cycles_resolve_completely); | ||
2210 | covers!(type_var_cycles_resolve_as_possible); | ||
2211 | assert_snapshot!( | ||
2212 | infer(r#" | ||
2213 | fn test() { | ||
2214 | let x = unknown; | ||
2215 | let y = unknown; | ||
2216 | [(x, y), (&y, &x)]; | ||
2217 | } | ||
2218 | "#), | ||
2219 | @r###" | ||
2220 | [11; 80) '{ ...x)]; }': () | ||
2221 | [21; 22) 'x': &&{unknown} | ||
2222 | [25; 32) 'unknown': &&{unknown} | ||
2223 | [42; 43) 'y': &&{unknown} | ||
2224 | [46; 53) 'unknown': &&{unknown} | ||
2225 | [59; 77) '[(x, y..., &x)]': [(&&&{unknown}, &&&{unknown});_] | ||
2226 | [60; 66) '(x, y)': (&&&{unknown}, &&&{unknown}) | ||
2227 | [61; 62) 'x': &&{unknown} | ||
2228 | [64; 65) 'y': &&{unknown} | ||
2229 | [68; 76) '(&y, &x)': (&&&{unknown}, &&&{unknown}) | ||
2230 | [69; 71) '&y': &&&{unknown} | ||
2231 | [70; 71) 'y': &&{unknown} | ||
2232 | [73; 75) '&x': &&&{unknown} | ||
2233 | [74; 75) 'x': &&{unknown} | ||
2234 | "### | ||
2235 | ); | ||
2236 | } | ||
2237 | |||
2238 | #[test] | ||
2239 | fn infer_type_param() { | ||
2240 | assert_snapshot!( | ||
2241 | infer(r#" | ||
2242 | fn id<T>(x: T) -> T { | ||
2243 | x | ||
2244 | } | ||
2245 | |||
2246 | fn clone<T>(x: &T) -> T { | ||
2247 | *x | ||
2248 | } | ||
2249 | |||
2250 | fn test() { | ||
2251 | let y = 10u32; | ||
2252 | id(y); | ||
2253 | let x: bool = clone(z); | ||
2254 | id::<i128>(1); | ||
2255 | } | ||
2256 | "#), | ||
2257 | @r###" | ||
2258 | [10; 11) 'x': T | ||
2259 | [21; 30) '{ x }': T | ||
2260 | [27; 28) 'x': T | ||
2261 | [44; 45) 'x': &T | ||
2262 | [56; 66) '{ *x }': T | ||
2263 | [62; 64) '*x': T | ||
2264 | [63; 64) 'x': &T | ||
2265 | [78; 158) '{ ...(1); }': () | ||
2266 | [88; 89) 'y': u32 | ||
2267 | [92; 97) '10u32': u32 | ||
2268 | [103; 105) 'id': fn id<u32>(T) -> T | ||
2269 | [103; 108) 'id(y)': u32 | ||
2270 | [106; 107) 'y': u32 | ||
2271 | [118; 119) 'x': bool | ||
2272 | [128; 133) 'clone': fn clone<bool>(&T) -> T | ||
2273 | [128; 136) 'clone(z)': bool | ||
2274 | [134; 135) 'z': &bool | ||
2275 | [142; 152) 'id::<i128>': fn id<i128>(T) -> T | ||
2276 | [142; 155) 'id::<i128>(1)': i128 | ||
2277 | [153; 154) '1': i128 | ||
2278 | "### | ||
2279 | ); | ||
2280 | } | ||
2281 | |||
2282 | #[test] | ||
2283 | fn infer_std_crash_1() { | ||
2284 | // caused stack overflow, taken from std | ||
2285 | assert_snapshot!( | ||
2286 | infer(r#" | ||
2287 | enum Maybe<T> { | ||
2288 | Real(T), | ||
2289 | Fake, | ||
2290 | } | ||
2291 | |||
2292 | fn write() { | ||
2293 | match something_unknown { | ||
2294 | Maybe::Real(ref mut something) => (), | ||
2295 | } | ||
2296 | } | ||
2297 | "#), | ||
2298 | @r###" | ||
2299 | [54; 139) '{ ... } }': () | ||
2300 | [60; 137) 'match ... }': () | ||
2301 | [66; 83) 'someth...nknown': Maybe<{unknown}> | ||
2302 | [94; 124) 'Maybe:...thing)': Maybe<{unknown}> | ||
2303 | [106; 123) 'ref mu...ething': &mut {unknown} | ||
2304 | [128; 130) '()': () | ||
2305 | "### | ||
2306 | ); | ||
2307 | } | ||
2308 | |||
2309 | #[test] | ||
2310 | fn infer_std_crash_2() { | ||
2311 | covers!(type_var_resolves_to_int_var); | ||
2312 | // caused "equating two type variables, ...", taken from std | ||
2313 | assert_snapshot!( | ||
2314 | infer(r#" | ||
2315 | fn test_line_buffer() { | ||
2316 | &[0, b'\n', 1, b'\n']; | ||
2317 | } | ||
2318 | "#), | ||
2319 | @r###" | ||
2320 | [23; 53) '{ ...n']; }': () | ||
2321 | [29; 50) '&[0, b...b'\n']': &[u8;_] | ||
2322 | [30; 50) '[0, b'...b'\n']': [u8;_] | ||
2323 | [31; 32) '0': u8 | ||
2324 | [34; 39) 'b'\n'': u8 | ||
2325 | [41; 42) '1': u8 | ||
2326 | [44; 49) 'b'\n'': u8 | ||
2327 | "### | ||
2328 | ); | ||
2329 | } | ||
2330 | |||
2331 | #[test] | ||
2332 | fn infer_std_crash_3() { | ||
2333 | // taken from rustc | ||
2334 | assert_snapshot!( | ||
2335 | infer(r#" | ||
2336 | pub fn compute() { | ||
2337 | match nope!() { | ||
2338 | SizeSkeleton::Pointer { non_zero: true, tail } => {} | ||
2339 | } | ||
2340 | } | ||
2341 | "#), | ||
2342 | @r###" | ||
2343 | [18; 108) '{ ... } }': () | ||
2344 | [24; 106) 'match ... }': () | ||
2345 | [30; 37) 'nope!()': {unknown} | ||
2346 | [48; 94) 'SizeSk...tail }': {unknown} | ||
2347 | [82; 86) 'true': {unknown} | ||
2348 | [88; 92) 'tail': {unknown} | ||
2349 | [98; 100) '{}': () | ||
2350 | "### | ||
2351 | ); | ||
2352 | } | ||
2353 | |||
2354 | #[test] | ||
2355 | fn infer_std_crash_4() { | ||
2356 | // taken from rustc | ||
2357 | assert_snapshot!( | ||
2358 | infer(r#" | ||
2359 | pub fn primitive_type() { | ||
2360 | match *self { | ||
2361 | BorrowedRef { type_: Primitive(p), ..} => {}, | ||
2362 | } | ||
2363 | } | ||
2364 | "#), | ||
2365 | @r###" | ||
2366 | [25; 106) '{ ... } }': () | ||
2367 | [31; 104) 'match ... }': () | ||
2368 | [37; 42) '*self': {unknown} | ||
2369 | [38; 42) 'self': {unknown} | ||
2370 | [53; 91) 'Borrow...), ..}': {unknown} | ||
2371 | [74; 86) 'Primitive(p)': {unknown} | ||
2372 | [84; 85) 'p': {unknown} | ||
2373 | [95; 97) '{}': () | ||
2374 | "### | ||
2375 | ); | ||
2376 | } | ||
2377 | |||
2378 | #[test] | ||
2379 | fn infer_std_crash_5() { | ||
2380 | // taken from rustc | ||
2381 | assert_snapshot!( | ||
2382 | infer(r#" | ||
2383 | fn extra_compiler_flags() { | ||
2384 | for content in doesnt_matter { | ||
2385 | let name = if doesnt_matter { | ||
2386 | first | ||
2387 | } else { | ||
2388 | &content | ||
2389 | }; | ||
2390 | |||
2391 | let content = if ICE_REPORT_COMPILER_FLAGS_STRIP_VALUE.contains(&name) { | ||
2392 | name | ||
2393 | } else { | ||
2394 | content | ||
2395 | }; | ||
2396 | } | ||
2397 | } | ||
2398 | "#), | ||
2399 | @r###" | ||
2400 | [27; 323) '{ ... } }': () | ||
2401 | [33; 321) 'for co... }': () | ||
2402 | [37; 44) 'content': &{unknown} | ||
2403 | [48; 61) 'doesnt_matter': {unknown} | ||
2404 | [62; 321) '{ ... }': () | ||
2405 | [76; 80) 'name': &&{unknown} | ||
2406 | [83; 167) 'if doe... }': &&{unknown} | ||
2407 | [86; 99) 'doesnt_matter': bool | ||
2408 | [100; 129) '{ ... }': &&{unknown} | ||
2409 | [114; 119) 'first': &&{unknown} | ||
2410 | [135; 167) '{ ... }': &&{unknown} | ||
2411 | [149; 157) '&content': &&{unknown} | ||
2412 | [150; 157) 'content': &{unknown} | ||
2413 | [182; 189) 'content': &{unknown} | ||
2414 | [192; 314) 'if ICE... }': &{unknown} | ||
2415 | [195; 232) 'ICE_RE..._VALUE': {unknown} | ||
2416 | [195; 248) 'ICE_RE...&name)': bool | ||
2417 | [242; 247) '&name': &&&{unknown} | ||
2418 | [243; 247) 'name': &&{unknown} | ||
2419 | [249; 277) '{ ... }': &&{unknown} | ||
2420 | [263; 267) 'name': &&{unknown} | ||
2421 | [283; 314) '{ ... }': &{unknown} | ||
2422 | [297; 304) 'content': &{unknown} | ||
2423 | "### | ||
2424 | ); | ||
2425 | } | ||
2426 | |||
2427 | #[test] | ||
2428 | fn infer_nested_generics_crash() { | ||
2429 | // another crash found typechecking rustc | ||
2430 | assert_snapshot!( | ||
2431 | infer(r#" | ||
2432 | struct Canonical<V> { | ||
2433 | value: V, | ||
2434 | } | ||
2435 | struct QueryResponse<V> { | ||
2436 | value: V, | ||
2437 | } | ||
2438 | fn test<R>(query_response: Canonical<QueryResponse<R>>) { | ||
2439 | &query_response.value; | ||
2440 | } | ||
2441 | "#), | ||
2442 | @r###" | ||
2443 | [92; 106) 'query_response': Canonical<QueryResponse<R>> | ||
2444 | [137; 167) '{ ...lue; }': () | ||
2445 | [143; 164) '&query....value': &QueryResponse<R> | ||
2446 | [144; 158) 'query_response': Canonical<QueryResponse<R>> | ||
2447 | [144; 164) 'query_....value': QueryResponse<R> | ||
2448 | "### | ||
2449 | ); | ||
2450 | } | ||
2451 | |||
2452 | #[test] | ||
2453 | fn bug_1030() { | ||
2454 | assert_snapshot!(infer(r#" | ||
2455 | struct HashSet<T, H>; | ||
2456 | struct FxHasher; | ||
2457 | type FxHashSet<T> = HashSet<T, FxHasher>; | ||
2458 | |||
2459 | impl<T, H> HashSet<T, H> { | ||
2460 | fn default() -> HashSet<T, H> {} | ||
2461 | } | ||
2462 | |||
2463 | pub fn main_loop() { | ||
2464 | FxHashSet::default(); | ||
2465 | } | ||
2466 | "#), | ||
2467 | @r###" | ||
2468 | [144; 146) '{}': () | ||
2469 | [169; 198) '{ ...t(); }': () | ||
2470 | [175; 193) 'FxHash...efault': fn default<{unknown}, FxHasher>() -> HashSet<T, H> | ||
2471 | [175; 195) 'FxHash...ault()': HashSet<{unknown}, FxHasher> | ||
2472 | "### | ||
2473 | ); | ||
2474 | } | ||
2475 | |||
2476 | #[test] | ||
2477 | fn cross_crate_associated_method_call() { | ||
2478 | let (db, pos) = TestDB::with_position( | ||
2479 | r#" | ||
2480 | //- /main.rs crate:main deps:other_crate | ||
2481 | fn test() { | ||
2482 | let x = other_crate::foo::S::thing(); | ||
2483 | x<|>; | ||
2484 | } | ||
2485 | |||
2486 | //- /lib.rs crate:other_crate | ||
2487 | mod foo { | ||
2488 | struct S; | ||
2489 | impl S { | ||
2490 | fn thing() -> i128 {} | ||
2491 | } | ||
2492 | } | ||
2493 | "#, | ||
2494 | ); | ||
2495 | assert_eq!("i128", type_at_pos(&db, pos)); | ||
2496 | } | ||
2497 | |||
2498 | #[test] | ||
2499 | fn infer_const() { | ||
2500 | assert_snapshot!( | ||
2501 | infer(r#" | ||
2502 | struct Foo; | ||
2503 | impl Foo { const ASSOC_CONST: u32 = 0; } | ||
2504 | const GLOBAL_CONST: u32 = 101; | ||
2505 | fn test() { | ||
2506 | const LOCAL_CONST: u32 = 99; | ||
2507 | let x = LOCAL_CONST; | ||
2508 | let z = GLOBAL_CONST; | ||
2509 | let id = Foo::ASSOC_CONST; | ||
2510 | } | ||
2511 | "#), | ||
2512 | @r###" | ||
2513 | [49; 50) '0': u32 | ||
2514 | [80; 83) '101': u32 | ||
2515 | [95; 213) '{ ...NST; }': () | ||
2516 | [138; 139) 'x': {unknown} | ||
2517 | [142; 153) 'LOCAL_CONST': {unknown} | ||
2518 | [163; 164) 'z': u32 | ||
2519 | [167; 179) 'GLOBAL_CONST': u32 | ||
2520 | [189; 191) 'id': u32 | ||
2521 | [194; 210) 'Foo::A..._CONST': u32 | ||
2522 | "### | ||
2523 | ); | ||
2524 | } | ||
2525 | |||
2526 | #[test] | ||
2527 | fn infer_static() { | ||
2528 | assert_snapshot!( | ||
2529 | infer(r#" | ||
2530 | static GLOBAL_STATIC: u32 = 101; | ||
2531 | static mut GLOBAL_STATIC_MUT: u32 = 101; | ||
2532 | fn test() { | ||
2533 | static LOCAL_STATIC: u32 = 99; | ||
2534 | static mut LOCAL_STATIC_MUT: u32 = 99; | ||
2535 | let x = LOCAL_STATIC; | ||
2536 | let y = LOCAL_STATIC_MUT; | ||
2537 | let z = GLOBAL_STATIC; | ||
2538 | let w = GLOBAL_STATIC_MUT; | ||
2539 | } | ||
2540 | "#), | ||
2541 | @r###" | ||
2542 | [29; 32) '101': u32 | ||
2543 | [70; 73) '101': u32 | ||
2544 | [85; 280) '{ ...MUT; }': () | ||
2545 | [173; 174) 'x': {unknown} | ||
2546 | [177; 189) 'LOCAL_STATIC': {unknown} | ||
2547 | [199; 200) 'y': {unknown} | ||
2548 | [203; 219) 'LOCAL_...IC_MUT': {unknown} | ||
2549 | [229; 230) 'z': u32 | ||
2550 | [233; 246) 'GLOBAL_STATIC': u32 | ||
2551 | [256; 257) 'w': u32 | ||
2552 | [260; 277) 'GLOBAL...IC_MUT': u32 | ||
2553 | "### | ||
2554 | ); | ||
2555 | } | ||
2556 | |||
2557 | #[test] | ||
2558 | fn infer_trait_method_simple() { | ||
2559 | // the trait implementation is intentionally incomplete -- it shouldn't matter | ||
2560 | assert_snapshot!( | ||
2561 | infer(r#" | ||
2562 | trait Trait1 { | ||
2563 | fn method(&self) -> u32; | ||
2564 | } | ||
2565 | struct S1; | ||
2566 | impl Trait1 for S1 {} | ||
2567 | trait Trait2 { | ||
2568 | fn method(&self) -> i128; | ||
2569 | } | ||
2570 | struct S2; | ||
2571 | impl Trait2 for S2 {} | ||
2572 | fn test() { | ||
2573 | S1.method(); // -> u32 | ||
2574 | S2.method(); // -> i128 | ||
2575 | } | ||
2576 | "#), | ||
2577 | @r###" | ||
2578 | [31; 35) 'self': &Self | ||
2579 | [110; 114) 'self': &Self | ||
2580 | [170; 228) '{ ...i128 }': () | ||
2581 | [176; 178) 'S1': S1 | ||
2582 | [176; 187) 'S1.method()': u32 | ||
2583 | [203; 205) 'S2': S2 | ||
2584 | [203; 214) 'S2.method()': i128 | ||
2585 | "### | ||
2586 | ); | ||
2587 | } | ||
2588 | |||
2589 | #[test] | ||
2590 | fn infer_trait_method_scoped() { | ||
2591 | // the trait implementation is intentionally incomplete -- it shouldn't matter | ||
2592 | assert_snapshot!( | ||
2593 | infer(r#" | ||
2594 | struct S; | ||
2595 | mod foo { | ||
2596 | pub trait Trait1 { | ||
2597 | fn method(&self) -> u32; | ||
2598 | } | ||
2599 | impl Trait1 for super::S {} | ||
2600 | } | ||
2601 | mod bar { | ||
2602 | pub trait Trait2 { | ||
2603 | fn method(&self) -> i128; | ||
2604 | } | ||
2605 | impl Trait2 for super::S {} | ||
2606 | } | ||
2607 | |||
2608 | mod foo_test { | ||
2609 | use super::S; | ||
2610 | use super::foo::Trait1; | ||
2611 | fn test() { | ||
2612 | S.method(); // -> u32 | ||
2613 | } | ||
2614 | } | ||
2615 | |||
2616 | mod bar_test { | ||
2617 | use super::S; | ||
2618 | use super::bar::Trait2; | ||
2619 | fn test() { | ||
2620 | S.method(); // -> i128 | ||
2621 | } | ||
2622 | } | ||
2623 | "#), | ||
2624 | @r###" | ||
2625 | [63; 67) 'self': &Self | ||
2626 | [169; 173) 'self': &Self | ||
2627 | [300; 337) '{ ... }': () | ||
2628 | [310; 311) 'S': S | ||
2629 | [310; 320) 'S.method()': u32 | ||
2630 | [416; 454) '{ ... }': () | ||
2631 | [426; 427) 'S': S | ||
2632 | [426; 436) 'S.method()': i128 | ||
2633 | "### | ||
2634 | ); | ||
2635 | } | ||
2636 | |||
2637 | #[test] | ||
2638 | fn infer_trait_method_generic_1() { | ||
2639 | // the trait implementation is intentionally incomplete -- it shouldn't matter | ||
2640 | assert_snapshot!( | ||
2641 | infer(r#" | ||
2642 | trait Trait<T> { | ||
2643 | fn method(&self) -> T; | ||
2644 | } | ||
2645 | struct S; | ||
2646 | impl Trait<u32> for S {} | ||
2647 | fn test() { | ||
2648 | S.method(); | ||
2649 | } | ||
2650 | "#), | ||
2651 | @r###" | ||
2652 | [33; 37) 'self': &Self | ||
2653 | [92; 111) '{ ...d(); }': () | ||
2654 | [98; 99) 'S': S | ||
2655 | [98; 108) 'S.method()': u32 | ||
2656 | "### | ||
2657 | ); | ||
2658 | } | ||
2659 | |||
2660 | #[test] | ||
2661 | fn infer_trait_method_generic_more_params() { | ||
2662 | // the trait implementation is intentionally incomplete -- it shouldn't matter | ||
2663 | assert_snapshot!( | ||
2664 | infer(r#" | ||
2665 | trait Trait<T1, T2, T3> { | ||
2666 | fn method1(&self) -> (T1, T2, T3); | ||
2667 | fn method2(&self) -> (T3, T2, T1); | ||
2668 | } | ||
2669 | struct S1; | ||
2670 | impl Trait<u8, u16, u32> for S1 {} | ||
2671 | struct S2; | ||
2672 | impl<T> Trait<i8, i16, T> for S2 {} | ||
2673 | fn test() { | ||
2674 | S1.method1(); // u8, u16, u32 | ||
2675 | S1.method2(); // u32, u16, u8 | ||
2676 | S2.method1(); // i8, i16, {unknown} | ||
2677 | S2.method2(); // {unknown}, i16, i8 | ||
2678 | } | ||
2679 | "#), | ||
2680 | @r###" | ||
2681 | [43; 47) 'self': &Self | ||
2682 | [82; 86) 'self': &Self | ||
2683 | [210; 361) '{ ..., i8 }': () | ||
2684 | [216; 218) 'S1': S1 | ||
2685 | [216; 228) 'S1.method1()': (u8, u16, u32) | ||
2686 | [250; 252) 'S1': S1 | ||
2687 | [250; 262) 'S1.method2()': (u32, u16, u8) | ||
2688 | [284; 286) 'S2': S2 | ||
2689 | [284; 296) 'S2.method1()': (i8, i16, {unknown}) | ||
2690 | [324; 326) 'S2': S2 | ||
2691 | [324; 336) 'S2.method2()': ({unknown}, i16, i8) | ||
2692 | "### | ||
2693 | ); | ||
2694 | } | ||
2695 | |||
2696 | #[test] | ||
2697 | fn infer_trait_method_generic_2() { | ||
2698 | // the trait implementation is intentionally incomplete -- it shouldn't matter | ||
2699 | assert_snapshot!( | ||
2700 | infer(r#" | ||
2701 | trait Trait<T> { | ||
2702 | fn method(&self) -> T; | ||
2703 | } | ||
2704 | struct S<T>(T); | ||
2705 | impl<U> Trait<U> for S<U> {} | ||
2706 | fn test() { | ||
2707 | S(1u32).method(); | ||
2708 | } | ||
2709 | "#), | ||
2710 | @r###" | ||
2711 | [33; 37) 'self': &Self | ||
2712 | [102; 127) '{ ...d(); }': () | ||
2713 | [108; 109) 'S': S<u32>(T) -> S<T> | ||
2714 | [108; 115) 'S(1u32)': S<u32> | ||
2715 | [108; 124) 'S(1u32...thod()': u32 | ||
2716 | [110; 114) '1u32': u32 | ||
2717 | "### | ||
2718 | ); | ||
2719 | } | ||
2720 | |||
2721 | #[test] | ||
2722 | fn infer_trait_assoc_method() { | ||
2723 | assert_snapshot!( | ||
2724 | infer(r#" | ||
2725 | trait Default { | ||
2726 | fn default() -> Self; | ||
2727 | } | ||
2728 | struct S; | ||
2729 | impl Default for S {} | ||
2730 | fn test() { | ||
2731 | let s1: S = Default::default(); | ||
2732 | let s2 = S::default(); | ||
2733 | let s3 = <S as Default>::default(); | ||
2734 | } | ||
2735 | "#), | ||
2736 | @r###" | ||
2737 | [87; 193) '{ ...t(); }': () | ||
2738 | [97; 99) 's1': S | ||
2739 | [105; 121) 'Defaul...efault': fn default<S>() -> Self | ||
2740 | [105; 123) 'Defaul...ault()': S | ||
2741 | [133; 135) 's2': S | ||
2742 | [138; 148) 'S::default': fn default<S>() -> Self | ||
2743 | [138; 150) 'S::default()': S | ||
2744 | [160; 162) 's3': S | ||
2745 | [165; 188) '<S as ...efault': fn default<S>() -> Self | ||
2746 | [165; 190) '<S as ...ault()': S | ||
2747 | "### | ||
2748 | ); | ||
2749 | } | ||
2750 | |||
2751 | #[test] | ||
2752 | fn infer_trait_assoc_method_generics_1() { | ||
2753 | assert_snapshot!( | ||
2754 | infer(r#" | ||
2755 | trait Trait<T> { | ||
2756 | fn make() -> T; | ||
2757 | } | ||
2758 | struct S; | ||
2759 | impl Trait<u32> for S {} | ||
2760 | struct G<T>; | ||
2761 | impl<T> Trait<T> for G<T> {} | ||
2762 | fn test() { | ||
2763 | let a = S::make(); | ||
2764 | let b = G::<u64>::make(); | ||
2765 | let c: f64 = G::make(); | ||
2766 | } | ||
2767 | "#), | ||
2768 | @r###" | ||
2769 | [127; 211) '{ ...e(); }': () | ||
2770 | [137; 138) 'a': u32 | ||
2771 | [141; 148) 'S::make': fn make<S, u32>() -> T | ||
2772 | [141; 150) 'S::make()': u32 | ||
2773 | [160; 161) 'b': u64 | ||
2774 | [164; 178) 'G::<u64>::make': fn make<G<u64>, u64>() -> T | ||
2775 | [164; 180) 'G::<u6...make()': u64 | ||
2776 | [190; 191) 'c': f64 | ||
2777 | [199; 206) 'G::make': fn make<G<f64>, f64>() -> T | ||
2778 | [199; 208) 'G::make()': f64 | ||
2779 | "### | ||
2780 | ); | ||
2781 | } | ||
2782 | |||
2783 | #[test] | ||
2784 | fn infer_trait_assoc_method_generics_2() { | ||
2785 | assert_snapshot!( | ||
2786 | infer(r#" | ||
2787 | trait Trait<T> { | ||
2788 | fn make<U>() -> (T, U); | ||
2789 | } | ||
2790 | struct S; | ||
2791 | impl Trait<u32> for S {} | ||
2792 | struct G<T>; | ||
2793 | impl<T> Trait<T> for G<T> {} | ||
2794 | fn test() { | ||
2795 | let a = S::make::<i64>(); | ||
2796 | let b: (_, i64) = S::make(); | ||
2797 | let c = G::<u32>::make::<i64>(); | ||
2798 | let d: (u32, _) = G::make::<i64>(); | ||
2799 | let e: (u32, i64) = G::make(); | ||
2800 | } | ||
2801 | "#), | ||
2802 | @r###" | ||
2803 | [135; 313) '{ ...e(); }': () | ||
2804 | [145; 146) 'a': (u32, i64) | ||
2805 | [149; 163) 'S::make::<i64>': fn make<S, u32, i64>() -> (T, U) | ||
2806 | [149; 165) 'S::mak...i64>()': (u32, i64) | ||
2807 | [175; 176) 'b': (u32, i64) | ||
2808 | [189; 196) 'S::make': fn make<S, u32, i64>() -> (T, U) | ||
2809 | [189; 198) 'S::make()': (u32, i64) | ||
2810 | [208; 209) 'c': (u32, i64) | ||
2811 | [212; 233) 'G::<u3...:<i64>': fn make<G<u32>, u32, i64>() -> (T, U) | ||
2812 | [212; 235) 'G::<u3...i64>()': (u32, i64) | ||
2813 | [245; 246) 'd': (u32, i64) | ||
2814 | [259; 273) 'G::make::<i64>': fn make<G<u32>, u32, i64>() -> (T, U) | ||
2815 | [259; 275) 'G::mak...i64>()': (u32, i64) | ||
2816 | [285; 286) 'e': (u32, i64) | ||
2817 | [301; 308) 'G::make': fn make<G<u32>, u32, i64>() -> (T, U) | ||
2818 | [301; 310) 'G::make()': (u32, i64) | ||
2819 | "### | ||
2820 | ); | ||
2821 | } | ||
2822 | |||
2823 | #[test] | ||
2824 | fn infer_trait_assoc_method_generics_3() { | ||
2825 | assert_snapshot!( | ||
2826 | infer(r#" | ||
2827 | trait Trait<T> { | ||
2828 | fn make() -> (Self, T); | ||
2829 | } | ||
2830 | struct S<T>; | ||
2831 | impl Trait<i64> for S<i32> {} | ||
2832 | fn test() { | ||
2833 | let a = S::make(); | ||
2834 | } | ||
2835 | "#), | ||
2836 | @r###" | ||
2837 | [101; 127) '{ ...e(); }': () | ||
2838 | [111; 112) 'a': (S<i32>, i64) | ||
2839 | [115; 122) 'S::make': fn make<S<i32>, i64>() -> (Self, T) | ||
2840 | [115; 124) 'S::make()': (S<i32>, i64) | ||
2841 | "### | ||
2842 | ); | ||
2843 | } | ||
2844 | |||
2845 | #[test] | ||
2846 | fn infer_trait_assoc_method_generics_4() { | ||
2847 | assert_snapshot!( | ||
2848 | infer(r#" | ||
2849 | trait Trait<T> { | ||
2850 | fn make() -> (Self, T); | ||
2851 | } | ||
2852 | struct S<T>; | ||
2853 | impl Trait<i64> for S<u64> {} | ||
2854 | impl Trait<i32> for S<u32> {} | ||
2855 | fn test() { | ||
2856 | let a: (S<u64>, _) = S::make(); | ||
2857 | let b: (_, i32) = S::make(); | ||
2858 | } | ||
2859 | "#), | ||
2860 | @r###" | ||
2861 | [131; 203) '{ ...e(); }': () | ||
2862 | [141; 142) 'a': (S<u64>, i64) | ||
2863 | [158; 165) 'S::make': fn make<S<u64>, i64>() -> (Self, T) | ||
2864 | [158; 167) 'S::make()': (S<u64>, i64) | ||
2865 | [177; 178) 'b': (S<u32>, i32) | ||
2866 | [191; 198) 'S::make': fn make<S<u32>, i32>() -> (Self, T) | ||
2867 | [191; 200) 'S::make()': (S<u32>, i32) | ||
2868 | "### | ||
2869 | ); | ||
2870 | } | ||
2871 | |||
2872 | #[test] | ||
2873 | fn infer_trait_assoc_method_generics_5() { | ||
2874 | assert_snapshot!( | ||
2875 | infer(r#" | ||
2876 | trait Trait<T> { | ||
2877 | fn make<U>() -> (Self, T, U); | ||
2878 | } | ||
2879 | struct S<T>; | ||
2880 | impl Trait<i64> for S<u64> {} | ||
2881 | fn test() { | ||
2882 | let a = <S as Trait<i64>>::make::<u8>(); | ||
2883 | let b: (S<u64>, _, _) = Trait::<i64>::make::<u8>(); | ||
2884 | } | ||
2885 | "#), | ||
2886 | @r###" | ||
2887 | [107; 211) '{ ...>(); }': () | ||
2888 | [117; 118) 'a': (S<u64>, i64, u8) | ||
2889 | [121; 150) '<S as ...::<u8>': fn make<S<u64>, i64, u8>() -> (Self, T, U) | ||
2890 | [121; 152) '<S as ...<u8>()': (S<u64>, i64, u8) | ||
2891 | [162; 163) 'b': (S<u64>, i64, u8) | ||
2892 | [182; 206) 'Trait:...::<u8>': fn make<S<u64>, i64, u8>() -> (Self, T, U) | ||
2893 | [182; 208) 'Trait:...<u8>()': (S<u64>, i64, u8) | ||
2894 | "### | ||
2895 | ); | ||
2896 | } | ||
2897 | |||
2898 | #[test] | ||
2899 | fn infer_from_bound_1() { | ||
2900 | assert_snapshot!( | ||
2901 | infer(r#" | ||
2902 | trait Trait<T> {} | ||
2903 | struct S<T>(T); | ||
2904 | impl<U> Trait<U> for S<U> {} | ||
2905 | fn foo<T: Trait<u32>>(t: T) {} | ||
2906 | fn test() { | ||
2907 | let s = S(unknown); | ||
2908 | foo(s); | ||
2909 | } | ||
2910 | "#), | ||
2911 | @r###" | ||
2912 | [86; 87) 't': T | ||
2913 | [92; 94) '{}': () | ||
2914 | [105; 144) '{ ...(s); }': () | ||
2915 | [115; 116) 's': S<u32> | ||
2916 | [119; 120) 'S': S<u32>(T) -> S<T> | ||
2917 | [119; 129) 'S(unknown)': S<u32> | ||
2918 | [121; 128) 'unknown': u32 | ||
2919 | [135; 138) 'foo': fn foo<S<u32>>(T) -> () | ||
2920 | [135; 141) 'foo(s)': () | ||
2921 | [139; 140) 's': S<u32> | ||
2922 | "### | ||
2923 | ); | ||
2924 | } | ||
2925 | |||
2926 | #[test] | ||
2927 | fn infer_from_bound_2() { | ||
2928 | assert_snapshot!( | ||
2929 | infer(r#" | ||
2930 | trait Trait<T> {} | ||
2931 | struct S<T>(T); | ||
2932 | impl<U> Trait<U> for S<U> {} | ||
2933 | fn foo<U, T: Trait<U>>(t: T) -> U {} | ||
2934 | fn test() { | ||
2935 | let s = S(unknown); | ||
2936 | let x: u32 = foo(s); | ||
2937 | } | ||
2938 | "#), | ||
2939 | @r###" | ||
2940 | [87; 88) 't': T | ||
2941 | [98; 100) '{}': () | ||
2942 | [111; 163) '{ ...(s); }': () | ||
2943 | [121; 122) 's': S<u32> | ||
2944 | [125; 126) 'S': S<u32>(T) -> S<T> | ||
2945 | [125; 135) 'S(unknown)': S<u32> | ||
2946 | [127; 134) 'unknown': u32 | ||
2947 | [145; 146) 'x': u32 | ||
2948 | [154; 157) 'foo': fn foo<u32, S<u32>>(T) -> U | ||
2949 | [154; 160) 'foo(s)': u32 | ||
2950 | [158; 159) 's': S<u32> | ||
2951 | "### | ||
2952 | ); | ||
2953 | } | ||
2954 | |||
2955 | #[test] | ||
2956 | fn infer_call_trait_method_on_generic_param_1() { | ||
2957 | assert_snapshot!( | ||
2958 | infer(r#" | ||
2959 | trait Trait { | ||
2960 | fn method(&self) -> u32; | ||
2961 | } | ||
2962 | fn test<T: Trait>(t: T) { | ||
2963 | t.method(); | ||
2964 | } | ||
2965 | "#), | ||
2966 | @r###" | ||
2967 | [30; 34) 'self': &Self | ||
2968 | [64; 65) 't': T | ||
2969 | [70; 89) '{ ...d(); }': () | ||
2970 | [76; 77) 't': T | ||
2971 | [76; 86) 't.method()': u32 | ||
2972 | "### | ||
2973 | ); | ||
2974 | } | ||
2975 | |||
2976 | #[test] | ||
2977 | fn infer_call_trait_method_on_generic_param_2() { | ||
2978 | assert_snapshot!( | ||
2979 | infer(r#" | ||
2980 | trait Trait<T> { | ||
2981 | fn method(&self) -> T; | ||
2982 | } | ||
2983 | fn test<U, T: Trait<U>>(t: T) { | ||
2984 | t.method(); | ||
2985 | } | ||
2986 | "#), | ||
2987 | @r###" | ||
2988 | [33; 37) 'self': &Self | ||
2989 | [71; 72) 't': T | ||
2990 | [77; 96) '{ ...d(); }': () | ||
2991 | [83; 84) 't': T | ||
2992 | [83; 93) 't.method()': [missing name] | ||
2993 | "### | ||
2994 | ); | ||
2995 | } | ||
2996 | |||
2997 | #[test] | ||
2998 | fn infer_with_multiple_trait_impls() { | ||
2999 | assert_snapshot!( | ||
3000 | infer(r#" | ||
3001 | trait Into<T> { | ||
3002 | fn into(self) -> T; | ||
3003 | } | ||
3004 | struct S; | ||
3005 | impl Into<u32> for S {} | ||
3006 | impl Into<u64> for S {} | ||
3007 | fn test() { | ||
3008 | let x: u32 = S.into(); | ||
3009 | let y: u64 = S.into(); | ||
3010 | let z = Into::<u64>::into(S); | ||
3011 | } | ||
3012 | "#), | ||
3013 | @r###" | ||
3014 | [29; 33) 'self': Self | ||
3015 | [111; 202) '{ ...(S); }': () | ||
3016 | [121; 122) 'x': u32 | ||
3017 | [130; 131) 'S': S | ||
3018 | [130; 138) 'S.into()': u32 | ||
3019 | [148; 149) 'y': u64 | ||
3020 | [157; 158) 'S': S | ||
3021 | [157; 165) 'S.into()': u64 | ||
3022 | [175; 176) 'z': u64 | ||
3023 | [179; 196) 'Into::...::into': fn into<S, u64>(Self) -> T | ||
3024 | [179; 199) 'Into::...nto(S)': u64 | ||
3025 | [197; 198) 'S': S | ||
3026 | "### | ||
3027 | ); | ||
3028 | } | ||
3029 | |||
3030 | #[test] | ||
3031 | fn infer_project_associated_type() { | ||
3032 | // y, z, a don't yet work because of https://github.com/rust-lang/chalk/issues/234 | ||
3033 | assert_snapshot!( | ||
3034 | infer(r#" | ||
3035 | trait Iterable { | ||
3036 | type Item; | ||
3037 | } | ||
3038 | struct S; | ||
3039 | impl Iterable for S { type Item = u32; } | ||
3040 | fn test<T: Iterable>() { | ||
3041 | let x: <S as Iterable>::Item = 1; | ||
3042 | let y: <T as Iterable>::Item = no_matter; | ||
3043 | let z: T::Item = no_matter; | ||
3044 | let a: <T>::Item = no_matter; | ||
3045 | } | ||
3046 | "#), | ||
3047 | @r###" | ||
3048 | [108; 261) '{ ...ter; }': () | ||
3049 | [118; 119) 'x': u32 | ||
3050 | [145; 146) '1': u32 | ||
3051 | [156; 157) 'y': {unknown} | ||
3052 | [183; 192) 'no_matter': {unknown} | ||
3053 | [202; 203) 'z': {unknown} | ||
3054 | [215; 224) 'no_matter': {unknown} | ||
3055 | [234; 235) 'a': {unknown} | ||
3056 | [249; 258) 'no_matter': {unknown} | ||
3057 | "### | ||
3058 | ); | ||
3059 | } | ||
3060 | |||
3061 | #[test] | ||
3062 | fn infer_return_associated_type() { | ||
3063 | assert_snapshot!( | ||
3064 | infer(r#" | ||
3065 | trait Iterable { | ||
3066 | type Item; | ||
3067 | } | ||
3068 | struct S; | ||
3069 | impl Iterable for S { type Item = u32; } | ||
3070 | fn foo1<T: Iterable>(t: T) -> T::Item {} | ||
3071 | fn foo2<T: Iterable>(t: T) -> <T as Iterable>::Item {} | ||
3072 | fn foo3<T: Iterable>(t: T) -> <T>::Item {} | ||
3073 | fn test() { | ||
3074 | let x = foo1(S); | ||
3075 | let y = foo2(S); | ||
3076 | let z = foo3(S); | ||
3077 | } | ||
3078 | "#), | ||
3079 | @r###" | ||
3080 | [106; 107) 't': T | ||
3081 | [123; 125) '{}': () | ||
3082 | [147; 148) 't': T | ||
3083 | [178; 180) '{}': () | ||
3084 | [202; 203) 't': T | ||
3085 | [221; 223) '{}': () | ||
3086 | [234; 300) '{ ...(S); }': () | ||
3087 | [244; 245) 'x': u32 | ||
3088 | [248; 252) 'foo1': fn foo1<S>(T) -> <T as Iterable>::Item | ||
3089 | [248; 255) 'foo1(S)': u32 | ||
3090 | [253; 254) 'S': S | ||
3091 | [265; 266) 'y': u32 | ||
3092 | [269; 273) 'foo2': fn foo2<S>(T) -> <T as Iterable>::Item | ||
3093 | [269; 276) 'foo2(S)': u32 | ||
3094 | [274; 275) 'S': S | ||
3095 | [286; 287) 'z': u32 | ||
3096 | [290; 294) 'foo3': fn foo3<S>(T) -> <T as Iterable>::Item | ||
3097 | [290; 297) 'foo3(S)': u32 | ||
3098 | [295; 296) 'S': S | ||
3099 | "### | ||
3100 | ); | ||
3101 | } | ||
3102 | |||
3103 | #[test] | ||
3104 | fn infer_associated_type_bound() { | ||
3105 | assert_snapshot!( | ||
3106 | infer(r#" | ||
3107 | trait Iterable { | ||
3108 | type Item; | ||
3109 | } | ||
3110 | fn test<T: Iterable<Item=u32>>() { | ||
3111 | let y: T::Item = unknown; | ||
3112 | } | ||
3113 | "#), | ||
3114 | @r###" | ||
3115 | [67; 100) '{ ...own; }': () | ||
3116 | [77; 78) 'y': {unknown} | ||
3117 | [90; 97) 'unknown': {unknown} | ||
3118 | "### | ||
3119 | ); | ||
3120 | } | ||
3121 | |||
3122 | #[test] | ||
3123 | fn infer_const_body() { | ||
3124 | assert_snapshot!( | ||
3125 | infer(r#" | ||
3126 | const A: u32 = 1 + 1; | ||
3127 | static B: u64 = { let x = 1; x }; | ||
3128 | "#), | ||
3129 | @r###" | ||
3130 | [16; 17) '1': u32 | ||
3131 | [16; 21) '1 + 1': u32 | ||
3132 | [20; 21) '1': u32 | ||
3133 | [39; 55) '{ let ...1; x }': u64 | ||
3134 | [45; 46) 'x': u64 | ||
3135 | [49; 50) '1': u64 | ||
3136 | [52; 53) 'x': u64 | ||
3137 | "### | ||
3138 | ); | ||
3139 | } | ||
3140 | |||
3141 | #[test] | ||
3142 | fn tuple_struct_fields() { | ||
3143 | assert_snapshot!( | ||
3144 | infer(r#" | ||
3145 | struct S(i32, u64); | ||
3146 | fn test() -> u64 { | ||
3147 | let a = S(4, 6); | ||
3148 | let b = a.0; | ||
3149 | a.1 | ||
3150 | } | ||
3151 | "#), | ||
3152 | @r###" | ||
3153 | [38; 87) '{ ... a.1 }': u64 | ||
3154 | [48; 49) 'a': S | ||
3155 | [52; 53) 'S': S(i32, u64) -> S | ||
3156 | [52; 59) 'S(4, 6)': S | ||
3157 | [54; 55) '4': i32 | ||
3158 | [57; 58) '6': u64 | ||
3159 | [69; 70) 'b': i32 | ||
3160 | [73; 74) 'a': S | ||
3161 | [73; 76) 'a.0': i32 | ||
3162 | [82; 83) 'a': S | ||
3163 | [82; 85) 'a.1': u64 | ||
3164 | "### | ||
3165 | ); | ||
3166 | } | ||
3167 | |||
3168 | #[test] | ||
3169 | fn tuple_struct_with_fn() { | ||
3170 | assert_snapshot!( | ||
3171 | infer(r#" | ||
3172 | struct S(fn(u32) -> u64); | ||
3173 | fn test() -> u64 { | ||
3174 | let a = S(|i| 2*i); | ||
3175 | let b = a.0(4); | ||
3176 | a.0(2) | ||
3177 | } | ||
3178 | "#), | ||
3179 | @r###" | ||
3180 | [44; 102) '{ ...0(2) }': u64 | ||
3181 | [54; 55) 'a': S | ||
3182 | [58; 59) 'S': S(fn(u32) -> u64) -> S | ||
3183 | [58; 68) 'S(|i| 2*i)': S | ||
3184 | [60; 67) '|i| 2*i': |i32| -> i32 | ||
3185 | [61; 62) 'i': i32 | ||
3186 | [64; 65) '2': i32 | ||
3187 | [64; 67) '2*i': i32 | ||
3188 | [66; 67) 'i': i32 | ||
3189 | [78; 79) 'b': u64 | ||
3190 | [82; 83) 'a': S | ||
3191 | [82; 85) 'a.0': fn(u32) -> u64 | ||
3192 | [82; 88) 'a.0(4)': u64 | ||
3193 | [86; 87) '4': u32 | ||
3194 | [94; 95) 'a': S | ||
3195 | [94; 97) 'a.0': fn(u32) -> u64 | ||
3196 | [94; 100) 'a.0(2)': u64 | ||
3197 | [98; 99) '2': u32 | ||
3198 | "### | ||
3199 | ); | ||
3200 | } | ||
3201 | |||
3202 | #[test] | ||
3203 | fn indexing_arrays() { | ||
3204 | assert_snapshot!( | ||
3205 | infer("fn main() { &mut [9][2]; }"), | ||
3206 | @r###" | ||
3207 | [10; 26) '{ &mut...[2]; }': () | ||
3208 | [12; 23) '&mut [9][2]': &mut {unknown} | ||
3209 | [17; 20) '[9]': [i32;_] | ||
3210 | [17; 23) '[9][2]': {unknown} | ||
3211 | [18; 19) '9': i32 | ||
3212 | [21; 22) '2': i32 | ||
3213 | "### | ||
3214 | ) | ||
3215 | } | ||
3216 | |||
3217 | #[test] | ||
3218 | fn infer_macros_expanded() { | ||
3219 | assert_snapshot!( | ||
3220 | infer(r#" | ||
3221 | struct Foo(Vec<i32>); | ||
3222 | |||
3223 | macro_rules! foo { | ||
3224 | ($($item:expr),*) => { | ||
3225 | { | ||
3226 | Foo(vec![$($item,)*]) | ||
3227 | } | ||
3228 | }; | ||
3229 | } | ||
3230 | |||
3231 | fn main() { | ||
3232 | let x = foo!(1,2); | ||
3233 | } | ||
3234 | "#), | ||
3235 | @r###" | ||
3236 | ![0; 17) '{Foo(v...,2,])}': Foo | ||
3237 | ![1; 4) 'Foo': Foo({unknown}) -> Foo | ||
3238 | ![1; 16) 'Foo(vec![1,2,])': Foo | ||
3239 | ![5; 15) 'vec![1,2,]': {unknown} | ||
3240 | [156; 182) '{ ...,2); }': () | ||
3241 | [166; 167) 'x': Foo | ||
3242 | "### | ||
3243 | ); | ||
3244 | } | ||
3245 | |||
3246 | #[test] | ||
3247 | fn infer_legacy_textual_scoped_macros_expanded() { | ||
3248 | assert_snapshot!( | ||
3249 | infer(r#" | ||
3250 | struct Foo(Vec<i32>); | ||
3251 | |||
3252 | #[macro_use] | ||
3253 | mod m { | ||
3254 | macro_rules! foo { | ||
3255 | ($($item:expr),*) => { | ||
3256 | { | ||
3257 | Foo(vec![$($item,)*]) | ||
3258 | } | ||
3259 | }; | ||
3260 | } | ||
3261 | } | ||
3262 | |||
3263 | fn main() { | ||
3264 | let x = foo!(1,2); | ||
3265 | let y = crate::foo!(1,2); | ||
3266 | } | ||
3267 | "#), | ||
3268 | @r###" | ||
3269 | ![0; 17) '{Foo(v...,2,])}': Foo | ||
3270 | ![1; 4) 'Foo': Foo({unknown}) -> Foo | ||
3271 | ![1; 16) 'Foo(vec![1,2,])': Foo | ||
3272 | ![5; 15) 'vec![1,2,]': {unknown} | ||
3273 | [195; 251) '{ ...,2); }': () | ||
3274 | [205; 206) 'x': Foo | ||
3275 | [228; 229) 'y': {unknown} | ||
3276 | [232; 248) 'crate:...!(1,2)': {unknown} | ||
3277 | "### | ||
3278 | ); | ||
3279 | } | ||
3280 | |||
3281 | #[test] | ||
3282 | fn infer_path_qualified_macros_expanded() { | ||
3283 | assert_snapshot!( | ||
3284 | infer(r#" | ||
3285 | #[macro_export] | ||
3286 | macro_rules! foo { | ||
3287 | () => { 42i32 } | ||
3288 | } | ||
3289 | |||
3290 | mod m { | ||
3291 | pub use super::foo as bar; | ||
3292 | } | ||
3293 | |||
3294 | fn main() { | ||
3295 | let x = crate::foo!(); | ||
3296 | let y = m::bar!(); | ||
3297 | } | ||
3298 | "#), | ||
3299 | @r###" | ||
3300 | ![0; 5) '42i32': i32 | ||
3301 | ![0; 5) '42i32': i32 | ||
3302 | [111; 164) '{ ...!(); }': () | ||
3303 | [121; 122) 'x': i32 | ||
3304 | [148; 149) 'y': i32 | ||
3305 | "### | ||
3306 | ); | ||
3307 | } | ||
3308 | |||
3309 | #[test] | ||
3310 | fn infer_type_value_macro_having_same_name() { | ||
3311 | assert_snapshot!( | ||
3312 | infer(r#" | ||
3313 | #[macro_export] | ||
3314 | macro_rules! foo { | ||
3315 | () => { | ||
3316 | mod foo { | ||
3317 | pub use super::foo; | ||
3318 | } | ||
3319 | }; | ||
3320 | ($x:tt) => { | ||
3321 | $x | ||
3322 | }; | ||
3323 | } | ||
3324 | |||
3325 | foo!(); | ||
3326 | |||
3327 | fn foo() { | ||
3328 | let foo = foo::foo!(42i32); | ||
3329 | } | ||
3330 | "#), | ||
3331 | @r###" | ||
3332 | ![0; 5) '42i32': i32 | ||
3333 | [171; 206) '{ ...32); }': () | ||
3334 | [181; 184) 'foo': i32 | ||
3335 | "### | ||
3336 | ); | ||
3337 | } | ||
3338 | |||
3339 | #[test] | ||
3340 | fn processes_impls_generated_by_macros() { | ||
3341 | let t = type_at( | ||
3342 | r#" | ||
3343 | //- /main.rs | ||
3344 | macro_rules! m { | ||
3345 | ($ident:ident) => (impl Trait for $ident {}) | ||
3346 | } | ||
3347 | trait Trait { fn foo(self) -> u128 {} } | ||
3348 | struct S; | ||
3349 | m!(S); | ||
3350 | fn test() { S.foo()<|>; } | ||
3351 | "#, | ||
3352 | ); | ||
3353 | assert_eq!(t, "u128"); | ||
3354 | } | ||
3355 | |||
3356 | #[test] | ||
3357 | fn infer_macro_with_dollar_crate_is_correct_in_expr() { | ||
3358 | let (db, pos) = TestDB::with_position( | ||
3359 | r#" | ||
3360 | //- /main.rs crate:main deps:foo | ||
3361 | fn test() { | ||
3362 | let x = (foo::foo!(1), foo::foo!(2)); | ||
3363 | x<|>; | ||
3364 | } | ||
3365 | |||
3366 | //- /lib.rs crate:foo | ||
3367 | #[macro_export] | ||
3368 | macro_rules! foo { | ||
3369 | (1) => { $crate::bar!() }; | ||
3370 | (2) => { 1 + $crate::baz() }; | ||
3371 | } | ||
3372 | |||
3373 | #[macro_export] | ||
3374 | macro_rules! bar { | ||
3375 | () => { 42 } | ||
3376 | } | ||
3377 | |||
3378 | pub fn baz() -> usize { 31usize } | ||
3379 | "#, | ||
3380 | ); | ||
3381 | assert_eq!("(i32, usize)", type_at_pos(&db, pos)); | ||
3382 | } | ||
3383 | |||
3384 | #[ignore] | ||
3385 | #[test] | ||
3386 | fn method_resolution_trait_before_autoref() { | ||
3387 | let t = type_at( | ||
3388 | r#" | ||
3389 | //- /main.rs | ||
3390 | trait Trait { fn foo(self) -> u128; } | ||
3391 | struct S; | ||
3392 | impl S { fn foo(&self) -> i8 { 0 } } | ||
3393 | impl Trait for S { fn foo(self) -> u128 { 0 } } | ||
3394 | fn test() { S.foo()<|>; } | ||
3395 | "#, | ||
3396 | ); | ||
3397 | assert_eq!(t, "u128"); | ||
3398 | } | ||
3399 | |||
3400 | #[ignore] | ||
3401 | #[test] | ||
3402 | fn method_resolution_by_value_before_autoref() { | ||
3403 | let t = type_at( | ||
3404 | r#" | ||
3405 | //- /main.rs | ||
3406 | trait Clone { fn clone(&self) -> Self; } | ||
3407 | struct S; | ||
3408 | impl Clone for S {} | ||
3409 | impl Clone for &S {} | ||
3410 | fn test() { (S.clone(), (&S).clone(), (&&S).clone())<|>; } | ||
3411 | "#, | ||
3412 | ); | ||
3413 | assert_eq!(t, "(S, S, &S)"); | ||
3414 | } | ||
3415 | |||
3416 | #[test] | ||
3417 | fn method_resolution_trait_before_autoderef() { | ||
3418 | let t = type_at( | ||
3419 | r#" | ||
3420 | //- /main.rs | ||
3421 | trait Trait { fn foo(self) -> u128; } | ||
3422 | struct S; | ||
3423 | impl S { fn foo(self) -> i8 { 0 } } | ||
3424 | impl Trait for &S { fn foo(self) -> u128 { 0 } } | ||
3425 | fn test() { (&S).foo()<|>; } | ||
3426 | "#, | ||
3427 | ); | ||
3428 | assert_eq!(t, "u128"); | ||
3429 | } | ||
3430 | |||
3431 | #[test] | ||
3432 | fn method_resolution_impl_before_trait() { | ||
3433 | let t = type_at( | ||
3434 | r#" | ||
3435 | //- /main.rs | ||
3436 | trait Trait { fn foo(self) -> u128; } | ||
3437 | struct S; | ||
3438 | impl S { fn foo(self) -> i8 { 0 } } | ||
3439 | impl Trait for S { fn foo(self) -> u128 { 0 } } | ||
3440 | fn test() { S.foo()<|>; } | ||
3441 | "#, | ||
3442 | ); | ||
3443 | assert_eq!(t, "i8"); | ||
3444 | } | ||
3445 | |||
3446 | #[test] | ||
3447 | fn method_resolution_trait_autoderef() { | ||
3448 | let t = type_at( | ||
3449 | r#" | ||
3450 | //- /main.rs | ||
3451 | trait Trait { fn foo(self) -> u128; } | ||
3452 | struct S; | ||
3453 | impl Trait for S { fn foo(self) -> u128 { 0 } } | ||
3454 | fn test() { (&S).foo()<|>; } | ||
3455 | "#, | ||
3456 | ); | ||
3457 | assert_eq!(t, "u128"); | ||
3458 | } | ||
3459 | |||
3460 | #[test] | ||
3461 | fn method_resolution_trait_from_prelude() { | ||
3462 | let (db, pos) = TestDB::with_position( | ||
3463 | r#" | ||
3464 | //- /main.rs crate:main deps:other_crate | ||
3465 | struct S; | ||
3466 | impl Clone for S {} | ||
3467 | |||
3468 | fn test() { | ||
3469 | S.clone()<|>; | ||
3470 | } | ||
3471 | |||
3472 | //- /lib.rs crate:other_crate | ||
3473 | #[prelude_import] use foo::*; | ||
3474 | |||
3475 | mod foo { | ||
3476 | trait Clone { | ||
3477 | fn clone(&self) -> Self; | ||
3478 | } | ||
3479 | } | ||
3480 | "#, | ||
3481 | ); | ||
3482 | assert_eq!("S", type_at_pos(&db, pos)); | ||
3483 | } | ||
3484 | |||
3485 | #[test] | ||
3486 | fn method_resolution_where_clause_for_unknown_trait() { | ||
3487 | // The blanket impl shouldn't apply because we can't even resolve UnknownTrait | ||
3488 | let t = type_at( | ||
3489 | r#" | ||
3490 | //- /main.rs | ||
3491 | trait Trait { fn foo(self) -> u128; } | ||
3492 | struct S; | ||
3493 | impl<T> Trait for T where T: UnknownTrait {} | ||
3494 | fn test() { (&S).foo()<|>; } | ||
3495 | "#, | ||
3496 | ); | ||
3497 | assert_eq!(t, "{unknown}"); | ||
3498 | } | ||
3499 | |||
3500 | #[test] | ||
3501 | fn method_resolution_where_clause_not_met() { | ||
3502 | // The blanket impl shouldn't apply because we can't prove S: Clone | ||
3503 | let t = type_at( | ||
3504 | r#" | ||
3505 | //- /main.rs | ||
3506 | trait Clone {} | ||
3507 | trait Trait { fn foo(self) -> u128; } | ||
3508 | struct S; | ||
3509 | impl<T> Trait for T where T: Clone {} | ||
3510 | fn test() { (&S).foo()<|>; } | ||
3511 | "#, | ||
3512 | ); | ||
3513 | // This is also to make sure that we don't resolve to the foo method just | ||
3514 | // because that's the only method named foo we can find, which would make | ||
3515 | // the below tests not work | ||
3516 | assert_eq!(t, "{unknown}"); | ||
3517 | } | ||
3518 | |||
3519 | #[test] | ||
3520 | fn method_resolution_where_clause_inline_not_met() { | ||
3521 | // The blanket impl shouldn't apply because we can't prove S: Clone | ||
3522 | let t = type_at( | ||
3523 | r#" | ||
3524 | //- /main.rs | ||
3525 | trait Clone {} | ||
3526 | trait Trait { fn foo(self) -> u128; } | ||
3527 | struct S; | ||
3528 | impl<T: Clone> Trait for T {} | ||
3529 | fn test() { (&S).foo()<|>; } | ||
3530 | "#, | ||
3531 | ); | ||
3532 | assert_eq!(t, "{unknown}"); | ||
3533 | } | ||
3534 | |||
3535 | #[test] | ||
3536 | fn method_resolution_where_clause_1() { | ||
3537 | let t = type_at( | ||
3538 | r#" | ||
3539 | //- /main.rs | ||
3540 | trait Clone {} | ||
3541 | trait Trait { fn foo(self) -> u128; } | ||
3542 | struct S; | ||
3543 | impl Clone for S {} | ||
3544 | impl<T> Trait for T where T: Clone {} | ||
3545 | fn test() { S.foo()<|>; } | ||
3546 | "#, | ||
3547 | ); | ||
3548 | assert_eq!(t, "u128"); | ||
3549 | } | ||
3550 | |||
3551 | #[test] | ||
3552 | fn method_resolution_where_clause_2() { | ||
3553 | let t = type_at( | ||
3554 | r#" | ||
3555 | //- /main.rs | ||
3556 | trait Into<T> { fn into(self) -> T; } | ||
3557 | trait From<T> { fn from(other: T) -> Self; } | ||
3558 | struct S1; | ||
3559 | struct S2; | ||
3560 | impl From<S2> for S1 {} | ||
3561 | impl<T, U> Into<U> for T where U: From<T> {} | ||
3562 | fn test() { S2.into()<|>; } | ||
3563 | "#, | ||
3564 | ); | ||
3565 | assert_eq!(t, "{unknown}"); | ||
3566 | } | ||
3567 | |||
3568 | #[test] | ||
3569 | fn method_resolution_where_clause_inline() { | ||
3570 | let t = type_at( | ||
3571 | r#" | ||
3572 | //- /main.rs | ||
3573 | trait Into<T> { fn into(self) -> T; } | ||
3574 | trait From<T> { fn from(other: T) -> Self; } | ||
3575 | struct S1; | ||
3576 | struct S2; | ||
3577 | impl From<S2> for S1 {} | ||
3578 | impl<T, U: From<T>> Into<U> for T {} | ||
3579 | fn test() { S2.into()<|>; } | ||
3580 | "#, | ||
3581 | ); | ||
3582 | assert_eq!(t, "{unknown}"); | ||
3583 | } | ||
3584 | |||
3585 | #[test] | ||
3586 | fn method_resolution_encountering_fn_type() { | ||
3587 | type_at( | ||
3588 | r#" | ||
3589 | //- /main.rs | ||
3590 | fn foo() {} | ||
3591 | trait FnOnce { fn call(self); } | ||
3592 | fn test() { foo.call()<|>; } | ||
3593 | "#, | ||
3594 | ); | ||
3595 | } | ||
3596 | |||
3597 | #[test] | ||
3598 | fn method_resolution_slow() { | ||
3599 | // this can get quite slow if we set the solver size limit too high | ||
3600 | let t = type_at( | ||
3601 | r#" | ||
3602 | //- /main.rs | ||
3603 | trait SendX {} | ||
3604 | |||
3605 | struct S1; impl SendX for S1 {} | ||
3606 | struct S2; impl SendX for S2 {} | ||
3607 | struct U1; | ||
3608 | |||
3609 | trait Trait { fn method(self); } | ||
3610 | |||
3611 | struct X1<A, B> {} | ||
3612 | impl<A, B> SendX for X1<A, B> where A: SendX, B: SendX {} | ||
3613 | |||
3614 | struct S<B, C> {} | ||
3615 | |||
3616 | trait FnX {} | ||
3617 | |||
3618 | impl<B, C> Trait for S<B, C> where C: FnX, B: SendX {} | ||
3619 | |||
3620 | fn test() { (S {}).method()<|>; } | ||
3621 | "#, | ||
3622 | ); | ||
3623 | assert_eq!(t, "()"); | ||
3624 | } | ||
3625 | |||
3626 | #[test] | ||
3627 | fn shadowing_primitive() { | ||
3628 | let t = type_at( | ||
3629 | r#" | ||
3630 | //- /main.rs | ||
3631 | struct i32; | ||
3632 | struct Foo; | ||
3633 | |||
3634 | impl i32 { fn foo(&self) -> Foo { Foo } } | ||
3635 | |||
3636 | fn main() { | ||
3637 | let x: i32 = i32; | ||
3638 | x.foo()<|>; | ||
3639 | }"#, | ||
3640 | ); | ||
3641 | assert_eq!(t, "Foo"); | ||
3642 | } | ||
3643 | |||
3644 | #[test] | ||
3645 | fn deref_trait() { | ||
3646 | let t = type_at( | ||
3647 | r#" | ||
3648 | //- /main.rs | ||
3649 | #[lang = "deref"] | ||
3650 | trait Deref { | ||
3651 | type Target; | ||
3652 | fn deref(&self) -> &Self::Target; | ||
3653 | } | ||
3654 | |||
3655 | struct Arc<T>; | ||
3656 | impl<T> Deref for Arc<T> { | ||
3657 | type Target = T; | ||
3658 | } | ||
3659 | |||
3660 | struct S; | ||
3661 | impl S { | ||
3662 | fn foo(&self) -> u128 {} | ||
3663 | } | ||
3664 | |||
3665 | fn test(s: Arc<S>) { | ||
3666 | (*s, s.foo())<|>; | ||
3667 | } | ||
3668 | "#, | ||
3669 | ); | ||
3670 | assert_eq!(t, "(S, u128)"); | ||
3671 | } | ||
3672 | |||
3673 | #[test] | ||
3674 | fn deref_trait_with_inference_var() { | ||
3675 | let t = type_at( | ||
3676 | r#" | ||
3677 | //- /main.rs | ||
3678 | #[lang = "deref"] | ||
3679 | trait Deref { | ||
3680 | type Target; | ||
3681 | fn deref(&self) -> &Self::Target; | ||
3682 | } | ||
3683 | |||
3684 | struct Arc<T>; | ||
3685 | fn new_arc<T>() -> Arc<T> {} | ||
3686 | impl<T> Deref for Arc<T> { | ||
3687 | type Target = T; | ||
3688 | } | ||
3689 | |||
3690 | struct S; | ||
3691 | fn foo(a: Arc<S>) {} | ||
3692 | |||
3693 | fn test() { | ||
3694 | let a = new_arc(); | ||
3695 | let b = (*a)<|>; | ||
3696 | foo(a); | ||
3697 | } | ||
3698 | "#, | ||
3699 | ); | ||
3700 | assert_eq!(t, "S"); | ||
3701 | } | ||
3702 | |||
3703 | #[test] | ||
3704 | fn deref_trait_infinite_recursion() { | ||
3705 | let t = type_at( | ||
3706 | r#" | ||
3707 | //- /main.rs | ||
3708 | #[lang = "deref"] | ||
3709 | trait Deref { | ||
3710 | type Target; | ||
3711 | fn deref(&self) -> &Self::Target; | ||
3712 | } | ||
3713 | |||
3714 | struct S; | ||
3715 | |||
3716 | impl Deref for S { | ||
3717 | type Target = S; | ||
3718 | } | ||
3719 | |||
3720 | fn test(s: S) { | ||
3721 | s.foo()<|>; | ||
3722 | } | ||
3723 | "#, | ||
3724 | ); | ||
3725 | assert_eq!(t, "{unknown}"); | ||
3726 | } | ||
3727 | |||
3728 | #[test] | ||
3729 | fn deref_trait_with_question_mark_size() { | ||
3730 | let t = type_at( | ||
3731 | r#" | ||
3732 | //- /main.rs | ||
3733 | #[lang = "deref"] | ||
3734 | trait Deref { | ||
3735 | type Target; | ||
3736 | fn deref(&self) -> &Self::Target; | ||
3737 | } | ||
3738 | |||
3739 | struct Arc<T>; | ||
3740 | impl<T> Deref for Arc<T> { | ||
3741 | type Target = T; | ||
3742 | } | ||
3743 | |||
3744 | struct S; | ||
3745 | impl S { | ||
3746 | fn foo(&self) -> u128 {} | ||
3747 | } | ||
3748 | |||
3749 | fn test(s: Arc<S>) { | ||
3750 | (*s, s.foo())<|>; | ||
3751 | } | ||
3752 | "#, | ||
3753 | ); | ||
3754 | assert_eq!(t, "(S, u128)"); | ||
3755 | } | ||
3756 | |||
3757 | #[test] | ||
3758 | fn obligation_from_function_clause() { | ||
3759 | let t = type_at( | ||
3760 | r#" | ||
3761 | //- /main.rs | ||
3762 | struct S; | ||
3763 | |||
3764 | trait Trait<T> {} | ||
3765 | impl Trait<u32> for S {} | ||
3766 | |||
3767 | fn foo<T: Trait<U>, U>(t: T) -> U {} | ||
3768 | |||
3769 | fn test(s: S) { | ||
3770 | foo(s)<|>; | ||
3771 | } | ||
3772 | "#, | ||
3773 | ); | ||
3774 | assert_eq!(t, "u32"); | ||
3775 | } | ||
3776 | |||
3777 | #[test] | ||
3778 | fn obligation_from_method_clause() { | ||
3779 | let t = type_at( | ||
3780 | r#" | ||
3781 | //- /main.rs | ||
3782 | struct S; | ||
3783 | |||
3784 | trait Trait<T> {} | ||
3785 | impl Trait<isize> for S {} | ||
3786 | |||
3787 | struct O; | ||
3788 | impl O { | ||
3789 | fn foo<T: Trait<U>, U>(&self, t: T) -> U {} | ||
3790 | } | ||
3791 | |||
3792 | fn test() { | ||
3793 | O.foo(S)<|>; | ||
3794 | } | ||
3795 | "#, | ||
3796 | ); | ||
3797 | assert_eq!(t, "isize"); | ||
3798 | } | ||
3799 | |||
3800 | #[test] | ||
3801 | fn obligation_from_self_method_clause() { | ||
3802 | let t = type_at( | ||
3803 | r#" | ||
3804 | //- /main.rs | ||
3805 | struct S; | ||
3806 | |||
3807 | trait Trait<T> {} | ||
3808 | impl Trait<i64> for S {} | ||
3809 | |||
3810 | impl S { | ||
3811 | fn foo<U>(&self) -> U where Self: Trait<U> {} | ||
3812 | } | ||
3813 | |||
3814 | fn test() { | ||
3815 | S.foo()<|>; | ||
3816 | } | ||
3817 | "#, | ||
3818 | ); | ||
3819 | assert_eq!(t, "i64"); | ||
3820 | } | ||
3821 | |||
3822 | #[test] | ||
3823 | fn obligation_from_impl_clause() { | ||
3824 | let t = type_at( | ||
3825 | r#" | ||
3826 | //- /main.rs | ||
3827 | struct S; | ||
3828 | |||
3829 | trait Trait<T> {} | ||
3830 | impl Trait<&str> for S {} | ||
3831 | |||
3832 | struct O<T>; | ||
3833 | impl<U, T: Trait<U>> O<T> { | ||
3834 | fn foo(&self) -> U {} | ||
3835 | } | ||
3836 | |||
3837 | fn test(o: O<S>) { | ||
3838 | o.foo()<|>; | ||
3839 | } | ||
3840 | "#, | ||
3841 | ); | ||
3842 | assert_eq!(t, "&str"); | ||
3843 | } | ||
3844 | |||
3845 | #[test] | ||
3846 | fn generic_param_env_1() { | ||
3847 | let t = type_at( | ||
3848 | r#" | ||
3849 | //- /main.rs | ||
3850 | trait Clone {} | ||
3851 | trait Trait { fn foo(self) -> u128; } | ||
3852 | struct S; | ||
3853 | impl Clone for S {} | ||
3854 | impl<T> Trait for T where T: Clone {} | ||
3855 | fn test<T: Clone>(t: T) { t.foo()<|>; } | ||
3856 | "#, | ||
3857 | ); | ||
3858 | assert_eq!(t, "u128"); | ||
3859 | } | ||
3860 | |||
3861 | #[test] | ||
3862 | fn generic_param_env_1_not_met() { | ||
3863 | let t = type_at( | ||
3864 | r#" | ||
3865 | //- /main.rs | ||
3866 | trait Clone {} | ||
3867 | trait Trait { fn foo(self) -> u128; } | ||
3868 | struct S; | ||
3869 | impl Clone for S {} | ||
3870 | impl<T> Trait for T where T: Clone {} | ||
3871 | fn test<T>(t: T) { t.foo()<|>; } | ||
3872 | "#, | ||
3873 | ); | ||
3874 | assert_eq!(t, "{unknown}"); | ||
3875 | } | ||
3876 | |||
3877 | #[test] | ||
3878 | fn generic_param_env_2() { | ||
3879 | let t = type_at( | ||
3880 | r#" | ||
3881 | //- /main.rs | ||
3882 | trait Trait { fn foo(self) -> u128; } | ||
3883 | struct S; | ||
3884 | impl Trait for S {} | ||
3885 | fn test<T: Trait>(t: T) { t.foo()<|>; } | ||
3886 | "#, | ||
3887 | ); | ||
3888 | assert_eq!(t, "u128"); | ||
3889 | } | ||
3890 | |||
3891 | #[test] | ||
3892 | fn generic_param_env_2_not_met() { | ||
3893 | let t = type_at( | ||
3894 | r#" | ||
3895 | //- /main.rs | ||
3896 | trait Trait { fn foo(self) -> u128; } | ||
3897 | struct S; | ||
3898 | impl Trait for S {} | ||
3899 | fn test<T>(t: T) { t.foo()<|>; } | ||
3900 | "#, | ||
3901 | ); | ||
3902 | assert_eq!(t, "{unknown}"); | ||
3903 | } | ||
3904 | |||
3905 | #[test] | ||
3906 | fn generic_param_env_deref() { | ||
3907 | let t = type_at( | ||
3908 | r#" | ||
3909 | //- /main.rs | ||
3910 | #[lang = "deref"] | ||
3911 | trait Deref { | ||
3912 | type Target; | ||
3913 | } | ||
3914 | trait Trait {} | ||
3915 | impl<T> Deref for T where T: Trait { | ||
3916 | type Target = i128; | ||
3917 | } | ||
3918 | fn test<T: Trait>(t: T) { (*t)<|>; } | ||
3919 | "#, | ||
3920 | ); | ||
3921 | assert_eq!(t, "i128"); | ||
3922 | } | ||
3923 | |||
3924 | #[test] | ||
3925 | fn associated_type_placeholder() { | ||
3926 | let t = type_at( | ||
3927 | r#" | ||
3928 | //- /main.rs | ||
3929 | pub trait ApplyL { | ||
3930 | type Out; | ||
3931 | } | ||
3932 | |||
3933 | pub struct RefMutL<T>; | ||
3934 | |||
3935 | impl<T> ApplyL for RefMutL<T> { | ||
3936 | type Out = <T as ApplyL>::Out; | ||
3937 | } | ||
3938 | |||
3939 | fn test<T: ApplyL>() { | ||
3940 | let y: <RefMutL<T> as ApplyL>::Out = no_matter; | ||
3941 | y<|>; | ||
3942 | } | ||
3943 | "#, | ||
3944 | ); | ||
3945 | // inside the generic function, the associated type gets normalized to a placeholder `ApplL::Out<T>` [https://rust-lang.github.io/rustc-guide/traits/associated-types.html#placeholder-associated-types]. | ||
3946 | // FIXME: fix type parameter names going missing when going through Chalk | ||
3947 | assert_eq!(t, "ApplyL::Out<[missing name]>"); | ||
3948 | } | ||
3949 | |||
3950 | #[test] | ||
3951 | fn associated_type_placeholder_2() { | ||
3952 | let t = type_at( | ||
3953 | r#" | ||
3954 | //- /main.rs | ||
3955 | pub trait ApplyL { | ||
3956 | type Out; | ||
3957 | } | ||
3958 | fn foo<T: ApplyL>(t: T) -> <T as ApplyL>::Out; | ||
3959 | |||
3960 | fn test<T: ApplyL>(t: T) { | ||
3961 | let y = foo(t); | ||
3962 | y<|>; | ||
3963 | } | ||
3964 | "#, | ||
3965 | ); | ||
3966 | // FIXME here Chalk doesn't normalize the type to a placeholder. I think we | ||
3967 | // need to add a rule like Normalize(<T as ApplyL>::Out -> ApplyL::Out<T>) | ||
3968 | // to the trait env ourselves here; probably Chalk can't do this by itself. | ||
3969 | // assert_eq!(t, "ApplyL::Out<[missing name]>"); | ||
3970 | assert_eq!(t, "{unknown}"); | ||
3971 | } | ||
3972 | |||
3973 | #[test] | ||
3974 | fn impl_trait() { | ||
3975 | assert_snapshot!( | ||
3976 | infer(r#" | ||
3977 | trait Trait<T> { | ||
3978 | fn foo(&self) -> T; | ||
3979 | fn foo2(&self) -> i64; | ||
3980 | } | ||
3981 | fn bar() -> impl Trait<u64> {} | ||
3982 | |||
3983 | fn test(x: impl Trait<u64>, y: &impl Trait<u64>) { | ||
3984 | x; | ||
3985 | y; | ||
3986 | let z = bar(); | ||
3987 | x.foo(); | ||
3988 | y.foo(); | ||
3989 | z.foo(); | ||
3990 | x.foo2(); | ||
3991 | y.foo2(); | ||
3992 | z.foo2(); | ||
3993 | } | ||
3994 | "#), | ||
3995 | @r###" | ||
3996 | [30; 34) 'self': &Self | ||
3997 | [55; 59) 'self': &Self | ||
3998 | [99; 101) '{}': () | ||
3999 | [111; 112) 'x': impl Trait<u64> | ||
4000 | [131; 132) 'y': &impl Trait<u64> | ||
4001 | [152; 269) '{ ...2(); }': () | ||
4002 | [158; 159) 'x': impl Trait<u64> | ||
4003 | [165; 166) 'y': &impl Trait<u64> | ||
4004 | [176; 177) 'z': impl Trait<u64> | ||
4005 | [180; 183) 'bar': fn bar() -> impl Trait<u64> | ||
4006 | [180; 185) 'bar()': impl Trait<u64> | ||
4007 | [191; 192) 'x': impl Trait<u64> | ||
4008 | [191; 198) 'x.foo()': u64 | ||
4009 | [204; 205) 'y': &impl Trait<u64> | ||
4010 | [204; 211) 'y.foo()': u64 | ||
4011 | [217; 218) 'z': impl Trait<u64> | ||
4012 | [217; 224) 'z.foo()': u64 | ||
4013 | [230; 231) 'x': impl Trait<u64> | ||
4014 | [230; 238) 'x.foo2()': i64 | ||
4015 | [244; 245) 'y': &impl Trait<u64> | ||
4016 | [244; 252) 'y.foo2()': i64 | ||
4017 | [258; 259) 'z': impl Trait<u64> | ||
4018 | [258; 266) 'z.foo2()': i64 | ||
4019 | "### | ||
4020 | ); | ||
4021 | } | ||
4022 | |||
4023 | #[test] | ||
4024 | fn dyn_trait() { | ||
4025 | assert_snapshot!( | ||
4026 | infer(r#" | ||
4027 | trait Trait<T> { | ||
4028 | fn foo(&self) -> T; | ||
4029 | fn foo2(&self) -> i64; | ||
4030 | } | ||
4031 | fn bar() -> dyn Trait<u64> {} | ||
4032 | |||
4033 | fn test(x: dyn Trait<u64>, y: &dyn Trait<u64>) { | ||
4034 | x; | ||
4035 | y; | ||
4036 | let z = bar(); | ||
4037 | x.foo(); | ||
4038 | y.foo(); | ||
4039 | z.foo(); | ||
4040 | x.foo2(); | ||
4041 | y.foo2(); | ||
4042 | z.foo2(); | ||
4043 | } | ||
4044 | "#), | ||
4045 | @r###" | ||
4046 | [30; 34) 'self': &Self | ||
4047 | [55; 59) 'self': &Self | ||
4048 | [98; 100) '{}': () | ||
4049 | [110; 111) 'x': dyn Trait<u64> | ||
4050 | [129; 130) 'y': &dyn Trait<u64> | ||
4051 | [149; 266) '{ ...2(); }': () | ||
4052 | [155; 156) 'x': dyn Trait<u64> | ||
4053 | [162; 163) 'y': &dyn Trait<u64> | ||
4054 | [173; 174) 'z': dyn Trait<u64> | ||
4055 | [177; 180) 'bar': fn bar() -> dyn Trait<u64> | ||
4056 | [177; 182) 'bar()': dyn Trait<u64> | ||
4057 | [188; 189) 'x': dyn Trait<u64> | ||
4058 | [188; 195) 'x.foo()': u64 | ||
4059 | [201; 202) 'y': &dyn Trait<u64> | ||
4060 | [201; 208) 'y.foo()': u64 | ||
4061 | [214; 215) 'z': dyn Trait<u64> | ||
4062 | [214; 221) 'z.foo()': u64 | ||
4063 | [227; 228) 'x': dyn Trait<u64> | ||
4064 | [227; 235) 'x.foo2()': i64 | ||
4065 | [241; 242) 'y': &dyn Trait<u64> | ||
4066 | [241; 249) 'y.foo2()': i64 | ||
4067 | [255; 256) 'z': dyn Trait<u64> | ||
4068 | [255; 263) 'z.foo2()': i64 | ||
4069 | "### | ||
4070 | ); | ||
4071 | } | ||
4072 | |||
4073 | #[test] | ||
4074 | fn dyn_trait_bare() { | ||
4075 | assert_snapshot!( | ||
4076 | infer(r#" | ||
4077 | trait Trait { | ||
4078 | fn foo(&self) -> u64; | ||
4079 | } | ||
4080 | fn bar() -> Trait {} | ||
4081 | |||
4082 | fn test(x: Trait, y: &Trait) -> u64 { | ||
4083 | x; | ||
4084 | y; | ||
4085 | let z = bar(); | ||
4086 | x.foo(); | ||
4087 | y.foo(); | ||
4088 | z.foo(); | ||
4089 | } | ||
4090 | "#), | ||
4091 | @r###" | ||
4092 | [27; 31) 'self': &Self | ||
4093 | [61; 63) '{}': () | ||
4094 | [73; 74) 'x': dyn Trait | ||
4095 | [83; 84) 'y': &dyn Trait | ||
4096 | [101; 176) '{ ...o(); }': () | ||
4097 | [107; 108) 'x': dyn Trait | ||
4098 | [114; 115) 'y': &dyn Trait | ||
4099 | [125; 126) 'z': dyn Trait | ||
4100 | [129; 132) 'bar': fn bar() -> dyn Trait | ||
4101 | [129; 134) 'bar()': dyn Trait | ||
4102 | [140; 141) 'x': dyn Trait | ||
4103 | [140; 147) 'x.foo()': u64 | ||
4104 | [153; 154) 'y': &dyn Trait | ||
4105 | [153; 160) 'y.foo()': u64 | ||
4106 | [166; 167) 'z': dyn Trait | ||
4107 | [166; 173) 'z.foo()': u64 | ||
4108 | "### | ||
4109 | ); | ||
4110 | } | ||
4111 | |||
4112 | #[test] | ||
4113 | fn weird_bounds() { | ||
4114 | assert_snapshot!( | ||
4115 | infer(r#" | ||
4116 | trait Trait {} | ||
4117 | fn test() { | ||
4118 | let a: impl Trait + 'lifetime = foo; | ||
4119 | let b: impl 'lifetime = foo; | ||
4120 | let b: impl (Trait) = foo; | ||
4121 | let b: impl ('lifetime) = foo; | ||
4122 | let d: impl ?Sized = foo; | ||
4123 | let e: impl Trait + ?Sized = foo; | ||
4124 | } | ||
4125 | "#), | ||
4126 | @r###" | ||
4127 | [26; 237) '{ ...foo; }': () | ||
4128 | [36; 37) 'a': impl Trait + {error} | ||
4129 | [64; 67) 'foo': impl Trait + {error} | ||
4130 | [77; 78) 'b': impl {error} | ||
4131 | [97; 100) 'foo': impl {error} | ||
4132 | [110; 111) 'b': impl Trait | ||
4133 | [128; 131) 'foo': impl Trait | ||
4134 | [141; 142) 'b': impl {error} | ||
4135 | [163; 166) 'foo': impl {error} | ||
4136 | [176; 177) 'd': impl {error} | ||
4137 | [193; 196) 'foo': impl {error} | ||
4138 | [206; 207) 'e': impl Trait + {error} | ||
4139 | [231; 234) 'foo': impl Trait + {error} | ||
4140 | "### | ||
4141 | ); | ||
4142 | } | ||
4143 | |||
4144 | #[test] | ||
4145 | fn assoc_type_bindings() { | ||
4146 | assert_snapshot!( | ||
4147 | infer(r#" | ||
4148 | trait Trait { | ||
4149 | type Type; | ||
4150 | } | ||
4151 | |||
4152 | fn get<T: Trait>(t: T) -> <T as Trait>::Type {} | ||
4153 | fn get2<U, T: Trait<Type = U>>(t: T) -> U {} | ||
4154 | fn set<T: Trait<Type = u64>>(t: T) -> T {t} | ||
4155 | |||
4156 | struct S<T>; | ||
4157 | impl<T> Trait for S<T> { type Type = T; } | ||
4158 | |||
4159 | fn test<T: Trait<Type = u32>>(x: T, y: impl Trait<Type = i64>) { | ||
4160 | get(x); | ||
4161 | get2(x); | ||
4162 | get(y); | ||
4163 | get2(y); | ||
4164 | get(set(S)); | ||
4165 | get2(set(S)); | ||
4166 | get2(S::<str>); | ||
4167 | } | ||
4168 | "#), | ||
4169 | @r###" | ||
4170 | [50; 51) 't': T | ||
4171 | [78; 80) '{}': () | ||
4172 | [112; 113) 't': T | ||
4173 | [123; 125) '{}': () | ||
4174 | [155; 156) 't': T | ||
4175 | [166; 169) '{t}': T | ||
4176 | [167; 168) 't': T | ||
4177 | [257; 258) 'x': T | ||
4178 | [263; 264) 'y': impl Trait<Type = i64> | ||
4179 | [290; 398) '{ ...r>); }': () | ||
4180 | [296; 299) 'get': fn get<T>(T) -> <T as Trait>::Type | ||
4181 | [296; 302) 'get(x)': {unknown} | ||
4182 | [300; 301) 'x': T | ||
4183 | [308; 312) 'get2': fn get2<{unknown}, T>(T) -> U | ||
4184 | [308; 315) 'get2(x)': {unknown} | ||
4185 | [313; 314) 'x': T | ||
4186 | [321; 324) 'get': fn get<impl Trait<Type = i64>>(T) -> <T as Trait>::Type | ||
4187 | [321; 327) 'get(y)': {unknown} | ||
4188 | [325; 326) 'y': impl Trait<Type = i64> | ||
4189 | [333; 337) 'get2': fn get2<{unknown}, impl Trait<Type = i64>>(T) -> U | ||
4190 | [333; 340) 'get2(y)': {unknown} | ||
4191 | [338; 339) 'y': impl Trait<Type = i64> | ||
4192 | [346; 349) 'get': fn get<S<u64>>(T) -> <T as Trait>::Type | ||
4193 | [346; 357) 'get(set(S))': u64 | ||
4194 | [350; 353) 'set': fn set<S<u64>>(T) -> T | ||
4195 | [350; 356) 'set(S)': S<u64> | ||
4196 | [354; 355) 'S': S<u64> | ||
4197 | [363; 367) 'get2': fn get2<u64, S<u64>>(T) -> U | ||
4198 | [363; 375) 'get2(set(S))': u64 | ||
4199 | [368; 371) 'set': fn set<S<u64>>(T) -> T | ||
4200 | [368; 374) 'set(S)': S<u64> | ||
4201 | [372; 373) 'S': S<u64> | ||
4202 | [381; 385) 'get2': fn get2<str, S<str>>(T) -> U | ||
4203 | [381; 395) 'get2(S::<str>)': str | ||
4204 | [386; 394) 'S::<str>': S<str> | ||
4205 | "### | ||
4206 | ); | ||
4207 | } | ||
4208 | |||
4209 | #[test] | ||
4210 | fn impl_trait_assoc_binding_projection_bug() { | ||
4211 | let (db, pos) = TestDB::with_position( | ||
4212 | r#" | ||
4213 | //- /main.rs crate:main deps:std | ||
4214 | pub trait Language { | ||
4215 | type Kind; | ||
4216 | } | ||
4217 | pub enum RustLanguage {} | ||
4218 | impl Language for RustLanguage { | ||
4219 | type Kind = SyntaxKind; | ||
4220 | } | ||
4221 | struct SyntaxNode<L> {} | ||
4222 | fn foo() -> impl Iterator<Item = SyntaxNode<RustLanguage>> {} | ||
4223 | |||
4224 | trait Clone { | ||
4225 | fn clone(&self) -> Self; | ||
4226 | } | ||
4227 | |||
4228 | fn api_walkthrough() { | ||
4229 | for node in foo() { | ||
4230 | node.clone()<|>; | ||
4231 | } | ||
4232 | } | ||
4233 | |||
4234 | //- /std.rs crate:std | ||
4235 | #[prelude_import] use iter::*; | ||
4236 | mod iter { | ||
4237 | trait IntoIterator { | ||
4238 | type Item; | ||
4239 | } | ||
4240 | trait Iterator { | ||
4241 | type Item; | ||
4242 | } | ||
4243 | impl<T: Iterator> IntoIterator for T { | ||
4244 | type Item = <T as Iterator>::Item; | ||
4245 | } | ||
4246 | } | ||
4247 | "#, | ||
4248 | ); | ||
4249 | assert_eq!("{unknown}", type_at_pos(&db, pos)); | ||
4250 | } | ||
4251 | |||
4252 | #[test] | ||
4253 | fn projection_eq_within_chalk() { | ||
4254 | // std::env::set_var("CHALK_DEBUG", "1"); | ||
4255 | assert_snapshot!( | ||
4256 | infer(r#" | ||
4257 | trait Trait1 { | ||
4258 | type Type; | ||
4259 | } | ||
4260 | trait Trait2<T> { | ||
4261 | fn foo(self) -> T; | ||
4262 | } | ||
4263 | impl<T, U> Trait2<T> for U where U: Trait1<Type = T> {} | ||
4264 | |||
4265 | fn test<T: Trait1<Type = u32>>(x: T) { | ||
4266 | x.foo(); | ||
4267 | } | ||
4268 | "#), | ||
4269 | @r###" | ||
4270 | [62; 66) 'self': Self | ||
4271 | [164; 165) 'x': T | ||
4272 | [170; 186) '{ ...o(); }': () | ||
4273 | [176; 177) 'x': T | ||
4274 | [176; 183) 'x.foo()': {unknown} | ||
4275 | "### | ||
4276 | ); | ||
4277 | } | ||
4278 | |||
4279 | #[test] | ||
4280 | fn where_clause_trait_in_scope_for_method_resolution() { | ||
4281 | let t = type_at( | ||
4282 | r#" | ||
4283 | //- /main.rs | ||
4284 | mod foo { | ||
4285 | trait Trait { | ||
4286 | fn foo(&self) -> u32 {} | ||
4287 | } | ||
4288 | } | ||
4289 | |||
4290 | fn test<T: foo::Trait>(x: T) { | ||
4291 | x.foo()<|>; | ||
4292 | } | ||
4293 | "#, | ||
4294 | ); | ||
4295 | assert_eq!(t, "u32"); | ||
4296 | } | ||
4297 | |||
4298 | #[test] | ||
4299 | fn super_trait_method_resolution() { | ||
4300 | assert_snapshot!( | ||
4301 | infer(r#" | ||
4302 | mod foo { | ||
4303 | trait SuperTrait { | ||
4304 | fn foo(&self) -> u32 {} | ||
4305 | } | ||
4306 | } | ||
4307 | trait Trait1: foo::SuperTrait {} | ||
4308 | trait Trait2 where Self: foo::SuperTrait {} | ||
4309 | |||
4310 | fn test<T: Trait1, U: Trait2>(x: T, y: U) { | ||
4311 | x.foo(); | ||
4312 | y.foo(); | ||
4313 | } | ||
4314 | "#), | ||
4315 | @r###" | ||
4316 | [50; 54) 'self': &Self | ||
4317 | [63; 65) '{}': () | ||
4318 | [182; 183) 'x': T | ||
4319 | [188; 189) 'y': U | ||
4320 | [194; 223) '{ ...o(); }': () | ||
4321 | [200; 201) 'x': T | ||
4322 | [200; 207) 'x.foo()': u32 | ||
4323 | [213; 214) 'y': U | ||
4324 | [213; 220) 'y.foo()': u32 | ||
4325 | "### | ||
4326 | ); | ||
4327 | } | ||
4328 | |||
4329 | #[test] | ||
4330 | fn super_trait_cycle() { | ||
4331 | // This just needs to not crash | ||
4332 | assert_snapshot!( | ||
4333 | infer(r#" | ||
4334 | trait A: B {} | ||
4335 | trait B: A {} | ||
4336 | |||
4337 | fn test<T: A>(x: T) { | ||
4338 | x.foo(); | ||
4339 | } | ||
4340 | "#), | ||
4341 | @r###" | ||
4342 | [44; 45) 'x': T | ||
4343 | [50; 66) '{ ...o(); }': () | ||
4344 | [56; 57) 'x': T | ||
4345 | [56; 63) 'x.foo()': {unknown} | ||
4346 | "### | ||
4347 | ); | ||
4348 | } | ||
4349 | |||
4350 | #[test] | ||
4351 | fn super_trait_assoc_type_bounds() { | ||
4352 | assert_snapshot!( | ||
4353 | infer(r#" | ||
4354 | trait SuperTrait { type Type; } | ||
4355 | trait Trait where Self: SuperTrait {} | ||
4356 | |||
4357 | fn get2<U, T: Trait<Type = U>>(t: T) -> U {} | ||
4358 | fn set<T: Trait<Type = u64>>(t: T) -> T {t} | ||
4359 | |||
4360 | struct S<T>; | ||
4361 | impl<T> SuperTrait for S<T> { type Type = T; } | ||
4362 | impl<T> Trait for S<T> {} | ||
4363 | |||
4364 | fn test() { | ||
4365 | get2(set(S)); | ||
4366 | } | ||
4367 | "#), | ||
4368 | @r###" | ||
4369 | [103; 104) 't': T | ||
4370 | [114; 116) '{}': () | ||
4371 | [146; 147) 't': T | ||
4372 | [157; 160) '{t}': T | ||
4373 | [158; 159) 't': T | ||
4374 | [259; 280) '{ ...S)); }': () | ||
4375 | [265; 269) 'get2': fn get2<u64, S<u64>>(T) -> U | ||
4376 | [265; 277) 'get2(set(S))': u64 | ||
4377 | [270; 273) 'set': fn set<S<u64>>(T) -> T | ||
4378 | [270; 276) 'set(S)': S<u64> | ||
4379 | [274; 275) 'S': S<u64> | ||
4380 | "### | ||
4381 | ); | ||
4382 | } | ||
4383 | |||
4384 | #[test] | ||
4385 | fn fn_trait() { | ||
4386 | assert_snapshot!( | ||
4387 | infer(r#" | ||
4388 | trait FnOnce<Args> { | ||
4389 | type Output; | ||
4390 | |||
4391 | fn call_once(self, args: Args) -> <Self as FnOnce<Args>>::Output; | ||
4392 | } | ||
4393 | |||
4394 | fn test<F: FnOnce(u32, u64) -> u128>(f: F) { | ||
4395 | f.call_once((1, 2)); | ||
4396 | } | ||
4397 | "#), | ||
4398 | @r###" | ||
4399 | [57; 61) 'self': Self | ||
4400 | [63; 67) 'args': Args | ||
4401 | [150; 151) 'f': F | ||
4402 | [156; 184) '{ ...2)); }': () | ||
4403 | [162; 163) 'f': F | ||
4404 | [162; 181) 'f.call...1, 2))': {unknown} | ||
4405 | [174; 180) '(1, 2)': (u32, u64) | ||
4406 | [175; 176) '1': u32 | ||
4407 | [178; 179) '2': u64 | ||
4408 | "### | ||
4409 | ); | ||
4410 | } | ||
4411 | |||
4412 | #[test] | ||
4413 | fn closure_1() { | ||
4414 | assert_snapshot!( | ||
4415 | infer(r#" | ||
4416 | #[lang = "fn_once"] | ||
4417 | trait FnOnce<Args> { | ||
4418 | type Output; | ||
4419 | } | ||
4420 | |||
4421 | enum Option<T> { Some(T), None } | ||
4422 | impl<T> Option<T> { | ||
4423 | fn map<U, F: FnOnce(T) -> U>(self, f: F) -> Option<U> {} | ||
4424 | } | ||
4425 | |||
4426 | fn test() { | ||
4427 | let x = Option::Some(1u32); | ||
4428 | x.map(|v| v + 1); | ||
4429 | x.map(|_v| 1u64); | ||
4430 | let y: Option<i64> = x.map(|_v| 1); | ||
4431 | } | ||
4432 | "#), | ||
4433 | @r###" | ||
4434 | [148; 152) 'self': Option<T> | ||
4435 | [154; 155) 'f': F | ||
4436 | [173; 175) '{}': () | ||
4437 | [189; 308) '{ ... 1); }': () | ||
4438 | [199; 200) 'x': Option<u32> | ||
4439 | [203; 215) 'Option::Some': Some<u32>(T) -> Option<T> | ||
4440 | [203; 221) 'Option...(1u32)': Option<u32> | ||
4441 | [216; 220) '1u32': u32 | ||
4442 | [227; 228) 'x': Option<u32> | ||
4443 | [227; 243) 'x.map(...v + 1)': Option<u32> | ||
4444 | [233; 242) '|v| v + 1': |u32| -> u32 | ||
4445 | [234; 235) 'v': u32 | ||
4446 | [237; 238) 'v': u32 | ||
4447 | [237; 242) 'v + 1': u32 | ||
4448 | [241; 242) '1': u32 | ||
4449 | [249; 250) 'x': Option<u32> | ||
4450 | [249; 265) 'x.map(... 1u64)': Option<u64> | ||
4451 | [255; 264) '|_v| 1u64': |u32| -> u64 | ||
4452 | [256; 258) '_v': u32 | ||
4453 | [260; 264) '1u64': u64 | ||
4454 | [275; 276) 'y': Option<i64> | ||
4455 | [292; 293) 'x': Option<u32> | ||
4456 | [292; 305) 'x.map(|_v| 1)': Option<i64> | ||
4457 | [298; 304) '|_v| 1': |u32| -> i64 | ||
4458 | [299; 301) '_v': u32 | ||
4459 | [303; 304) '1': i64 | ||
4460 | "### | ||
4461 | ); | ||
4462 | } | ||
4463 | |||
4464 | #[test] | ||
4465 | fn closure_2() { | ||
4466 | assert_snapshot!( | ||
4467 | infer(r#" | ||
4468 | trait FnOnce<Args> { | ||
4469 | type Output; | ||
4470 | } | ||
4471 | |||
4472 | fn test<F: FnOnce(u32) -> u64>(f: F) { | ||
4473 | f(1); | ||
4474 | let g = |v| v + 1; | ||
4475 | g(1u64); | ||
4476 | let h = |v| 1u128 + v; | ||
4477 | } | ||
4478 | "#), | ||
4479 | @r###" | ||
4480 | [73; 74) 'f': F | ||
4481 | [79; 155) '{ ...+ v; }': () | ||
4482 | [85; 86) 'f': F | ||
4483 | [85; 89) 'f(1)': {unknown} | ||
4484 | [87; 88) '1': i32 | ||
4485 | [99; 100) 'g': |u64| -> i32 | ||
4486 | [103; 112) '|v| v + 1': |u64| -> i32 | ||
4487 | [104; 105) 'v': u64 | ||
4488 | [107; 108) 'v': u64 | ||
4489 | [107; 112) 'v + 1': i32 | ||
4490 | [111; 112) '1': i32 | ||
4491 | [118; 119) 'g': |u64| -> i32 | ||
4492 | [118; 125) 'g(1u64)': i32 | ||
4493 | [120; 124) '1u64': u64 | ||
4494 | [135; 136) 'h': |u128| -> u128 | ||
4495 | [139; 152) '|v| 1u128 + v': |u128| -> u128 | ||
4496 | [140; 141) 'v': u128 | ||
4497 | [143; 148) '1u128': u128 | ||
4498 | [143; 152) '1u128 + v': u128 | ||
4499 | [151; 152) 'v': u128 | ||
4500 | "### | ||
4501 | ); | ||
4502 | } | ||
4503 | |||
4504 | #[test] | ||
4505 | fn closure_as_argument_inference_order() { | ||
4506 | assert_snapshot!( | ||
4507 | infer(r#" | ||
4508 | #[lang = "fn_once"] | ||
4509 | trait FnOnce<Args> { | ||
4510 | type Output; | ||
4511 | } | ||
4512 | |||
4513 | fn foo1<T, U, F: FnOnce(T) -> U>(x: T, f: F) -> U {} | ||
4514 | fn foo2<T, U, F: FnOnce(T) -> U>(f: F, x: T) -> U {} | ||
4515 | |||
4516 | struct S; | ||
4517 | impl S { | ||
4518 | fn method(self) -> u64; | ||
4519 | |||
4520 | fn foo1<T, U, F: FnOnce(T) -> U>(self, x: T, f: F) -> U {} | ||
4521 | fn foo2<T, U, F: FnOnce(T) -> U>(self, f: F, x: T) -> U {} | ||
4522 | } | ||
4523 | |||
4524 | fn test() { | ||
4525 | let x1 = foo1(S, |s| s.method()); | ||
4526 | let x2 = foo2(|s| s.method(), S); | ||
4527 | let x3 = S.foo1(S, |s| s.method()); | ||
4528 | let x4 = S.foo2(|s| s.method(), S); | ||
4529 | } | ||
4530 | "#), | ||
4531 | @r###" | ||
4532 | [95; 96) 'x': T | ||
4533 | [101; 102) 'f': F | ||
4534 | [112; 114) '{}': () | ||
4535 | [148; 149) 'f': F | ||
4536 | [154; 155) 'x': T | ||
4537 | [165; 167) '{}': () | ||
4538 | [202; 206) 'self': S | ||
4539 | [254; 258) 'self': S | ||
4540 | [260; 261) 'x': T | ||
4541 | [266; 267) 'f': F | ||
4542 | [277; 279) '{}': () | ||
4543 | [317; 321) 'self': S | ||
4544 | [323; 324) 'f': F | ||
4545 | [329; 330) 'x': T | ||
4546 | [340; 342) '{}': () | ||
4547 | [356; 515) '{ ... S); }': () | ||
4548 | [366; 368) 'x1': u64 | ||
4549 | [371; 375) 'foo1': fn foo1<S, u64, |S| -> u64>(T, F) -> U | ||
4550 | [371; 394) 'foo1(S...hod())': u64 | ||
4551 | [376; 377) 'S': S | ||
4552 | [379; 393) '|s| s.method()': |S| -> u64 | ||
4553 | [380; 381) 's': S | ||
4554 | [383; 384) 's': S | ||
4555 | [383; 393) 's.method()': u64 | ||
4556 | [404; 406) 'x2': u64 | ||
4557 | [409; 413) 'foo2': fn foo2<S, u64, |S| -> u64>(F, T) -> U | ||
4558 | [409; 432) 'foo2(|...(), S)': u64 | ||
4559 | [414; 428) '|s| s.method()': |S| -> u64 | ||
4560 | [415; 416) 's': S | ||
4561 | [418; 419) 's': S | ||
4562 | [418; 428) 's.method()': u64 | ||
4563 | [430; 431) 'S': S | ||
4564 | [442; 444) 'x3': u64 | ||
4565 | [447; 448) 'S': S | ||
4566 | [447; 472) 'S.foo1...hod())': u64 | ||
4567 | [454; 455) 'S': S | ||
4568 | [457; 471) '|s| s.method()': |S| -> u64 | ||
4569 | [458; 459) 's': S | ||
4570 | [461; 462) 's': S | ||
4571 | [461; 471) 's.method()': u64 | ||
4572 | [482; 484) 'x4': u64 | ||
4573 | [487; 488) 'S': S | ||
4574 | [487; 512) 'S.foo2...(), S)': u64 | ||
4575 | [494; 508) '|s| s.method()': |S| -> u64 | ||
4576 | [495; 496) 's': S | ||
4577 | [498; 499) 's': S | ||
4578 | [498; 508) 's.method()': u64 | ||
4579 | [510; 511) 'S': S | ||
4580 | "### | ||
4581 | ); | ||
4582 | } | ||
4583 | |||
4584 | #[test] | ||
4585 | fn unselected_projection_in_trait_env_1() { | ||
4586 | let t = type_at( | ||
4587 | r#" | ||
4588 | //- /main.rs | ||
4589 | trait Trait { | ||
4590 | type Item; | ||
4591 | } | ||
4592 | |||
4593 | trait Trait2 { | ||
4594 | fn foo(&self) -> u32; | ||
4595 | } | ||
4596 | |||
4597 | fn test<T: Trait>() where T::Item: Trait2 { | ||
4598 | let x: T::Item = no_matter; | ||
4599 | x.foo()<|>; | ||
4600 | } | ||
4601 | "#, | ||
4602 | ); | ||
4603 | assert_eq!(t, "u32"); | ||
4604 | } | ||
4605 | |||
4606 | #[test] | ||
4607 | fn unselected_projection_in_trait_env_2() { | ||
4608 | let t = type_at( | ||
4609 | r#" | ||
4610 | //- /main.rs | ||
4611 | trait Trait<T> { | ||
4612 | type Item; | ||
4613 | } | ||
4614 | |||
4615 | trait Trait2 { | ||
4616 | fn foo(&self) -> u32; | ||
4617 | } | ||
4618 | |||
4619 | fn test<T, U>() where T::Item: Trait2, T: Trait<U::Item>, U: Trait<()> { | ||
4620 | let x: T::Item = no_matter; | ||
4621 | x.foo()<|>; | ||
4622 | } | ||
4623 | "#, | ||
4624 | ); | ||
4625 | assert_eq!(t, "u32"); | ||
4626 | } | ||
4627 | |||
4628 | #[test] | ||
4629 | // FIXME this is currently a Salsa panic; it would be nicer if it just returned | ||
4630 | // in Unknown, and we should be able to do that once Salsa allows us to handle | ||
4631 | // the cycle. But at least it doesn't overflow for now. | ||
4632 | #[should_panic] | ||
4633 | fn unselected_projection_in_trait_env_cycle_1() { | ||
4634 | let t = type_at( | ||
4635 | r#" | ||
4636 | //- /main.rs | ||
4637 | trait Trait { | ||
4638 | type Item; | ||
4639 | } | ||
4640 | |||
4641 | trait Trait2<T> {} | ||
4642 | |||
4643 | fn test<T: Trait>() where T: Trait2<T::Item> { | ||
4644 | let x: T::Item = no_matter<|>; | ||
4645 | } | ||
4646 | "#, | ||
4647 | ); | ||
4648 | // this is a legitimate cycle | ||
4649 | assert_eq!(t, "{unknown}"); | ||
4650 | } | ||
4651 | |||
4652 | #[test] | ||
4653 | // FIXME this is currently a Salsa panic; it would be nicer if it just returned | ||
4654 | // in Unknown, and we should be able to do that once Salsa allows us to handle | ||
4655 | // the cycle. But at least it doesn't overflow for now. | ||
4656 | #[should_panic] | ||
4657 | fn unselected_projection_in_trait_env_cycle_2() { | ||
4658 | let t = type_at( | ||
4659 | r#" | ||
4660 | //- /main.rs | ||
4661 | trait Trait<T> { | ||
4662 | type Item; | ||
4663 | } | ||
4664 | |||
4665 | fn test<T, U>() where T: Trait<U::Item>, U: Trait<T::Item> { | ||
4666 | let x: T::Item = no_matter<|>; | ||
4667 | } | ||
4668 | "#, | ||
4669 | ); | ||
4670 | // this is a legitimate cycle | ||
4671 | assert_eq!(t, "{unknown}"); | ||
4672 | } | ||
4673 | |||
4674 | fn type_at_pos(db: &TestDB, pos: FilePosition) -> String { | ||
4675 | let file = db.parse(pos.file_id).ok().unwrap(); | ||
4676 | let expr = algo::find_node_at_offset::<ast::Expr>(file.syntax(), pos.offset).unwrap(); | ||
4677 | |||
4678 | let module = db.module_for_file(pos.file_id); | ||
4679 | let crate_def_map = db.crate_def_map(module.krate); | ||
4680 | for decl in crate_def_map[module.local_id].scope.declarations() { | ||
4681 | if let ModuleDefId::FunctionId(func) = decl { | ||
4682 | let (_body, source_map) = db.body_with_source_map(func.into()); | ||
4683 | if let Some(expr_id) = source_map.node_expr(Source::new(pos.file_id.into(), &expr)) { | ||
4684 | let infer = db.infer(func.into()); | ||
4685 | let ty = &infer[expr_id]; | ||
4686 | return ty.display(db).to_string(); | ||
4687 | } | ||
4688 | } | ||
4689 | } | ||
4690 | panic!("Can't find expression") | ||
4691 | } | ||
4692 | |||
4693 | fn type_at(content: &str) -> String { | ||
4694 | let (db, file_pos) = TestDB::with_position(content); | ||
4695 | type_at_pos(&db, file_pos) | ||
4696 | } | ||
4697 | |||
4698 | fn infer(content: &str) -> String { | ||
4699 | let (db, file_id) = TestDB::with_single_file(content); | ||
4700 | |||
4701 | let mut acc = String::new(); | ||
4702 | |||
4703 | let mut infer_def = |inference_result: Arc<InferenceResult>, | ||
4704 | body_source_map: Arc<BodySourceMap>| { | ||
4705 | let mut types = Vec::new(); | ||
4706 | |||
4707 | for (pat, ty) in inference_result.type_of_pat.iter() { | ||
4708 | let syntax_ptr = match body_source_map.pat_syntax(pat) { | ||
4709 | Some(sp) => { | ||
4710 | sp.map(|ast| ast.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr())) | ||
4711 | } | ||
4712 | None => continue, | ||
4713 | }; | ||
4714 | types.push((syntax_ptr, ty)); | ||
4715 | } | ||
4716 | |||
4717 | for (expr, ty) in inference_result.type_of_expr.iter() { | ||
4718 | let syntax_ptr = match body_source_map.expr_syntax(expr) { | ||
4719 | Some(sp) => { | ||
4720 | sp.map(|ast| ast.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr())) | ||
4721 | } | ||
4722 | None => continue, | ||
4723 | }; | ||
4724 | types.push((syntax_ptr, ty)); | ||
4725 | } | ||
4726 | |||
4727 | // sort ranges for consistency | ||
4728 | types.sort_by_key(|(src_ptr, _)| { | ||
4729 | (src_ptr.value.range().start(), src_ptr.value.range().end()) | ||
4730 | }); | ||
4731 | for (src_ptr, ty) in &types { | ||
4732 | let node = src_ptr.value.to_node(&src_ptr.file_syntax(&db)); | ||
4733 | |||
4734 | let (range, text) = if let Some(self_param) = ast::SelfParam::cast(node.clone()) { | ||
4735 | (self_param.self_kw_token().text_range(), "self".to_string()) | ||
4736 | } else { | ||
4737 | (src_ptr.value.range(), node.text().to_string().replace("\n", " ")) | ||
4738 | }; | ||
4739 | let macro_prefix = if src_ptr.file_id != file_id.into() { "!" } else { "" }; | ||
4740 | write!( | ||
4741 | acc, | ||
4742 | "{}{} '{}': {}\n", | ||
4743 | macro_prefix, | ||
4744 | range, | ||
4745 | ellipsize(text, 15), | ||
4746 | ty.display(&db) | ||
4747 | ) | ||
4748 | .unwrap(); | ||
4749 | } | ||
4750 | }; | ||
4751 | |||
4752 | let module = db.module_for_file(file_id); | ||
4753 | let crate_def_map = db.crate_def_map(module.krate); | ||
4754 | |||
4755 | let mut defs: Vec<DefWithBodyId> = Vec::new(); | ||
4756 | visit_module(&db, &crate_def_map, module.local_id, &mut |it| defs.push(it)); | ||
4757 | defs.sort_by_key(|def| match def { | ||
4758 | DefWithBodyId::FunctionId(it) => { | ||
4759 | it.lookup(&db).ast_id.to_node(&db).syntax().text_range().start() | ||
4760 | } | ||
4761 | DefWithBodyId::ConstId(it) => { | ||
4762 | it.lookup(&db).ast_id.to_node(&db).syntax().text_range().start() | ||
4763 | } | ||
4764 | DefWithBodyId::StaticId(it) => { | ||
4765 | it.lookup(&db).ast_id.to_node(&db).syntax().text_range().start() | ||
4766 | } | ||
4767 | }); | ||
4768 | for def in defs { | ||
4769 | let (_body, source_map) = db.body_with_source_map(def); | ||
4770 | let infer = db.infer(def); | ||
4771 | infer_def(infer, source_map); | ||
4772 | } | ||
4773 | |||
4774 | acc.truncate(acc.trim_end().len()); | ||
4775 | acc | ||
4776 | } | ||
4777 | |||
4778 | fn visit_module( | ||
4779 | db: &TestDB, | ||
4780 | crate_def_map: &CrateDefMap, | ||
4781 | module_id: LocalModuleId, | ||
4782 | cb: &mut dyn FnMut(DefWithBodyId), | ||
4783 | ) { | ||
4784 | for decl in crate_def_map[module_id].scope.declarations() { | ||
4785 | match decl { | ||
4786 | ModuleDefId::FunctionId(it) => cb(it.into()), | ||
4787 | ModuleDefId::ConstId(it) => cb(it.into()), | ||
4788 | ModuleDefId::StaticId(it) => cb(it.into()), | ||
4789 | ModuleDefId::TraitId(it) => { | ||
4790 | let trait_data = db.trait_data(it); | ||
4791 | for &(_, item) in trait_data.items.iter() { | ||
4792 | match item { | ||
4793 | AssocItemId::FunctionId(it) => cb(it.into()), | ||
4794 | AssocItemId::ConstId(it) => cb(it.into()), | ||
4795 | AssocItemId::TypeAliasId(_) => (), | ||
4796 | } | ||
4797 | } | ||
4798 | } | ||
4799 | ModuleDefId::ModuleId(it) => visit_module(db, crate_def_map, it.local_id, cb), | ||
4800 | _ => (), | ||
4801 | } | ||
4802 | } | ||
4803 | for &impl_id in crate_def_map[module_id].impls.iter() { | ||
4804 | let impl_data = db.impl_data(impl_id); | ||
4805 | for &item in impl_data.items.iter() { | ||
4806 | match item { | ||
4807 | AssocItemId::FunctionId(it) => cb(it.into()), | ||
4808 | AssocItemId::ConstId(it) => cb(it.into()), | ||
4809 | AssocItemId::TypeAliasId(_) => (), | ||
4810 | } | ||
4811 | } | ||
4812 | } | ||
4813 | } | ||
4814 | |||
4815 | fn ellipsize(mut text: String, max_len: usize) -> String { | ||
4816 | if text.len() <= max_len { | ||
4817 | return text; | ||
4818 | } | ||
4819 | let ellipsis = "..."; | ||
4820 | let e_len = ellipsis.len(); | ||
4821 | let mut prefix_len = (max_len - e_len) / 2; | ||
4822 | while !text.is_char_boundary(prefix_len) { | ||
4823 | prefix_len += 1; | ||
4824 | } | ||
4825 | let mut suffix_len = max_len - e_len - prefix_len; | ||
4826 | while !text.is_char_boundary(text.len() - suffix_len) { | ||
4827 | suffix_len += 1; | ||
4828 | } | ||
4829 | text.replace_range(prefix_len..text.len() - suffix_len, ellipsis); | ||
4830 | text | ||
4831 | } | ||
4832 | |||
4833 | #[test] | ||
4834 | fn typing_whitespace_inside_a_function_should_not_invalidate_types() { | ||
4835 | let (mut db, pos) = TestDB::with_position( | ||
4836 | " | ||
4837 | //- /lib.rs | ||
4838 | fn foo() -> i32 { | ||
4839 | <|>1 + 1 | ||
4840 | } | ||
4841 | ", | ||
4842 | ); | ||
4843 | { | ||
4844 | let events = db.log_executed(|| { | ||
4845 | let module = db.module_for_file(pos.file_id); | ||
4846 | let crate_def_map = db.crate_def_map(module.krate); | ||
4847 | visit_module(&db, &crate_def_map, module.local_id, &mut |def| { | ||
4848 | db.infer(def); | ||
4849 | }); | ||
4850 | }); | ||
4851 | assert!(format!("{:?}", events).contains("infer")) | ||
4852 | } | ||
4853 | |||
4854 | let new_text = " | ||
4855 | fn foo() -> i32 { | ||
4856 | 1 | ||
4857 | + | ||
4858 | 1 | ||
4859 | } | ||
4860 | " | ||
4861 | .to_string(); | ||
4862 | |||
4863 | db.query_mut(ra_db::FileTextQuery).set(pos.file_id, Arc::new(new_text)); | ||
4864 | |||
4865 | { | ||
4866 | let events = db.log_executed(|| { | ||
4867 | let module = db.module_for_file(pos.file_id); | ||
4868 | let crate_def_map = db.crate_def_map(module.krate); | ||
4869 | visit_module(&db, &crate_def_map, module.local_id, &mut |def| { | ||
4870 | db.infer(def); | ||
4871 | }); | ||
4872 | }); | ||
4873 | assert!(!format!("{:?}", events).contains("infer"), "{:#?}", events) | ||
4874 | } | ||
4875 | } | ||
4876 | |||
4877 | #[test] | ||
4878 | fn no_such_field_diagnostics() { | ||
4879 | let diagnostics = TestDB::with_files( | ||
4880 | r" | ||
4881 | //- /lib.rs | ||
4882 | struct S { foo: i32, bar: () } | ||
4883 | impl S { | ||
4884 | fn new() -> S { | ||
4885 | S { | ||
4886 | foo: 92, | ||
4887 | baz: 62, | ||
4888 | } | ||
4889 | } | ||
4890 | } | ||
4891 | ", | ||
4892 | ) | ||
4893 | .diagnostics(); | ||
4894 | |||
4895 | assert_snapshot!(diagnostics, @r###" | ||
4896 | "baz: 62": no such field | ||
4897 | "{\n foo: 92,\n baz: 62,\n }": Missing structure fields: | ||
4898 | - bar | ||
4899 | "### | ||
4900 | ); | ||
4901 | } | ||
4902 | |||
4903 | #[test] | ||
4904 | fn infer_builtin_macros_line() { | ||
4905 | assert_snapshot!( | ||
4906 | infer(r#" | ||
4907 | #[rustc_builtin_macro] | ||
4908 | macro_rules! line {() => {}} | ||
4909 | |||
4910 | fn main() { | ||
4911 | let x = line!(); | ||
4912 | } | ||
4913 | "#), | ||
4914 | @r###" | ||
4915 | ![0; 1) '6': i32 | ||
4916 | [64; 88) '{ ...!(); }': () | ||
4917 | [74; 75) 'x': i32 | ||
4918 | "### | ||
4919 | ); | ||
4920 | } | ||
4921 | |||
4922 | #[test] | ||
4923 | fn infer_builtin_macros_file() { | ||
4924 | assert_snapshot!( | ||
4925 | infer(r#" | ||
4926 | #[rustc_builtin_macro] | ||
4927 | macro_rules! file {() => {}} | ||
4928 | |||
4929 | fn main() { | ||
4930 | let x = file!(); | ||
4931 | } | ||
4932 | "#), | ||
4933 | @r###" | ||
4934 | ![0; 2) '""': &str | ||
4935 | [64; 88) '{ ...!(); }': () | ||
4936 | [74; 75) 'x': &str | ||
4937 | "### | ||
4938 | ); | ||
4939 | } | ||
4940 | |||
4941 | #[test] | ||
4942 | fn infer_builtin_macros_column() { | ||
4943 | assert_snapshot!( | ||
4944 | infer(r#" | ||
4945 | #[rustc_builtin_macro] | ||
4946 | macro_rules! column {() => {}} | ||
4947 | |||
4948 | fn main() { | ||
4949 | let x = column!(); | ||
4950 | } | ||
4951 | "#), | ||
4952 | @r###" | ||
4953 | ![0; 2) '13': i32 | ||
4954 | [66; 92) '{ ...!(); }': () | ||
4955 | [76; 77) 'x': i32 | ||
4956 | "### | ||
4957 | ); | ||
4958 | } | ||