aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2021-05-23 11:52:41 +0100
committerFlorian Diebold <[email protected]>2021-05-23 11:52:41 +0100
commita5d85a6356dc761d047f46bf04eae09dc9ab80f9 (patch)
treec02c9f04b9f1ef694d2a1e0680e137e060a7cda2 /crates
parentbc1ba1549d97e7d5ddceb16b7238ae8aab5794d0 (diff)
Add test for #8931 and better checking
Diffstat (limited to 'crates')
-rw-r--r--crates/hir/src/lib.rs4
-rw-r--r--crates/hir_ty/src/lib.rs94
-rw-r--r--crates/ide_completion/src/completions/dot.rs29
3 files changed, 114 insertions, 13 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs
index 52d72c3c5..800101c91 100644
--- a/crates/hir/src/lib.rs
+++ b/crates/hir/src/lib.rs
@@ -2053,7 +2053,7 @@ impl Type {
2053 name: Option<&Name>, 2053 name: Option<&Name>,
2054 mut callback: impl FnMut(&Ty, AssocItem) -> Option<T>, 2054 mut callback: impl FnMut(&Ty, AssocItem) -> Option<T>,
2055 ) -> Option<T> { 2055 ) -> Option<T> {
2056 let canonical = hir_ty::replace_errors_with_variables(self.ty.clone()); 2056 let canonical = hir_ty::replace_errors_with_variables(&self.ty);
2057 2057
2058 let env = self.env.clone(); 2058 let env = self.env.clone();
2059 let krate = krate.id; 2059 let krate = krate.id;
@@ -2222,7 +2222,7 @@ impl Type {
2222 } 2222 }
2223 2223
2224 pub fn could_unify_with(&self, db: &dyn HirDatabase, other: &Type) -> bool { 2224 pub fn could_unify_with(&self, db: &dyn HirDatabase, other: &Type) -> bool {
2225 let tys = hir_ty::replace_errors_with_variables((self.ty.clone(), other.ty.clone())); 2225 let tys = hir_ty::replace_errors_with_variables(&(self.ty.clone(), other.ty.clone()));
2226 could_unify(db, self.env.clone(), &tys) 2226 could_unify(db, self.env.clone(), &tys)
2227 } 2227 }
2228} 2228}
diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs
index 72093d75a..ef021978a 100644
--- a/crates/hir_ty/src/lib.rs
+++ b/crates/hir_ty/src/lib.rs
@@ -43,7 +43,6 @@ use hir_def::{
43 type_ref::{ConstScalar, Rawness}, 43 type_ref::{ConstScalar, Rawness},
44 TypeParamId, 44 TypeParamId,
45}; 45};
46use stdx::always;
47 46
48use crate::{db::HirDatabase, utils::generics}; 47use crate::{db::HirDatabase, utils::generics};
49 48
@@ -329,14 +328,17 @@ pub(crate) fn fold_tys<T: HasInterner<Interner = Interner> + Fold<Interner>>(
329 t.fold_with(&mut TyFolder(f), binders).expect("fold failed unexpectedly") 328 t.fold_with(&mut TyFolder(f), binders).expect("fold failed unexpectedly")
330} 329}
331 330
332pub fn replace_errors_with_variables<T>(t: T) -> Canonical<T::Result> 331/// 'Canonicalizes' the `t` by replacing any errors with new variables. Also
332/// ensures there are no unbound variables or inference variables anywhere in
333/// the `t`.
334pub fn replace_errors_with_variables<T>(t: &T) -> Canonical<T::Result>
333where 335where
334 T: HasInterner<Interner = Interner> + Fold<Interner>, 336 T: HasInterner<Interner = Interner> + Fold<Interner> + Clone,
335 T::Result: HasInterner<Interner = Interner>, 337 T::Result: HasInterner<Interner = Interner>,
336{ 338{
337 use chalk_ir::{ 339 use chalk_ir::{
338 fold::{Folder, SuperFold}, 340 fold::{Folder, SuperFold},
339 Fallible, 341 Fallible, NoSolution,
340 }; 342 };
341 struct ErrorReplacer { 343 struct ErrorReplacer {
342 vars: usize, 344 vars: usize,
@@ -363,18 +365,88 @@ where
363 365
364 fn fold_inference_ty( 366 fn fold_inference_ty(
365 &mut self, 367 &mut self,
366 var: InferenceVar, 368 _var: InferenceVar,
367 kind: TyVariableKind, 369 _kind: TyVariableKind,
370 _outer_binder: DebruijnIndex,
371 ) -> Fallible<Ty> {
372 if cfg!(debug_assertions) {
373 // we don't want to just panic here, because then the error message
374 // won't contain the whole thing, which would not be very helpful
375 Err(NoSolution)
376 } else {
377 Ok(TyKind::Error.intern(&Interner))
378 }
379 }
380
381 fn fold_free_var_ty(
382 &mut self,
383 _bound_var: BoundVar,
368 _outer_binder: DebruijnIndex, 384 _outer_binder: DebruijnIndex,
369 ) -> Fallible<Ty> { 385 ) -> Fallible<Ty> {
370 always!(false); 386 if cfg!(debug_assertions) {
371 Ok(TyKind::InferenceVar(var, kind).intern(&Interner)) 387 // we don't want to just panic here, because then the error message
388 // won't contain the whole thing, which would not be very helpful
389 Err(NoSolution)
390 } else {
391 Ok(TyKind::Error.intern(&Interner))
392 }
393 }
394
395 fn fold_inference_const(
396 &mut self,
397 _ty: Ty,
398 _var: InferenceVar,
399 _outer_binder: DebruijnIndex,
400 ) -> Fallible<Const> {
401 if cfg!(debug_assertions) {
402 Err(NoSolution)
403 } else {
404 Ok(dummy_usize_const())
405 }
406 }
407
408 fn fold_free_var_const(
409 &mut self,
410 _ty: Ty,
411 _bound_var: BoundVar,
412 _outer_binder: DebruijnIndex,
413 ) -> Fallible<Const> {
414 if cfg!(debug_assertions) {
415 Err(NoSolution)
416 } else {
417 Ok(dummy_usize_const())
418 }
419 }
420
421 fn fold_inference_lifetime(
422 &mut self,
423 _var: InferenceVar,
424 _outer_binder: DebruijnIndex,
425 ) -> Fallible<Lifetime> {
426 if cfg!(debug_assertions) {
427 Err(NoSolution)
428 } else {
429 Ok(static_lifetime())
430 }
431 }
432
433 fn fold_free_var_lifetime(
434 &mut self,
435 _bound_var: BoundVar,
436 _outer_binder: DebruijnIndex,
437 ) -> Fallible<Lifetime> {
438 if cfg!(debug_assertions) {
439 Err(NoSolution)
440 } else {
441 Ok(static_lifetime())
442 }
372 } 443 }
373 } 444 }
374 let mut error_replacer = ErrorReplacer { vars: 0 }; 445 let mut error_replacer = ErrorReplacer { vars: 0 };
375 let value = t 446 let value = match t.clone().fold_with(&mut error_replacer, DebruijnIndex::INNERMOST) {
376 .fold_with(&mut error_replacer, DebruijnIndex::INNERMOST) 447 Ok(t) => t,
377 .expect("fold failed unexpectedly"); 448 Err(_) => panic!("Encountered unbound or inference vars in {:?}", t),
449 };
378 let kinds = (0..error_replacer.vars).map(|_| { 450 let kinds = (0..error_replacer.vars).map(|_| {
379 chalk_ir::CanonicalVarKind::new( 451 chalk_ir::CanonicalVarKind::new(
380 chalk_ir::VariableKind::Ty(TyVariableKind::General), 452 chalk_ir::VariableKind::Ty(TyVariableKind::General),
diff --git a/crates/ide_completion/src/completions/dot.rs b/crates/ide_completion/src/completions/dot.rs
index 7e4efe589..1bff55936 100644
--- a/crates/ide_completion/src/completions/dot.rs
+++ b/crates/ide_completion/src/completions/dot.rs
@@ -454,4 +454,33 @@ mod foo {
454 "#]], 454 "#]],
455 ); 455 );
456 } 456 }
457
458 #[test]
459 fn issue_8931() {
460 check(
461 r#"
462#[lang = "fn_once"]
463trait FnOnce<Args> {
464 type Output;
465}
466struct S;
467
468struct Foo;
469impl Foo {
470 fn foo(&self) -> &[u8] { loop {} }
471}
472
473impl S {
474 fn indented(&mut self, f: impl FnOnce(&mut Self)) {
475 }
476
477 fn f(&mut self, v: Foo) {
478 self.indented(|this| v.$0)
479 }
480}
481 "#,
482 expect![[r#"
483 "#]],
484 );
485 }
457} 486}