mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Test for a Salsa bug
This commit is contained in:
parent
0d40ff5e62
commit
0623bb4d71
3 changed files with 124 additions and 0 deletions
|
@ -106,6 +106,10 @@ impl ProjectionTy {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn self_type_parameter(&self) -> &Ty {
|
||||||
|
&self.substitution[0]
|
||||||
|
}
|
||||||
|
|
||||||
fn trait_(&self, db: &dyn HirDatabase) -> TraitId {
|
fn trait_(&self, db: &dyn HirDatabase) -> TraitId {
|
||||||
match from_assoc_type_id(self.associated_ty_id).lookup(db.upcast()).container {
|
match from_assoc_type_id(self.associated_ty_id).lookup(db.upcast()).container {
|
||||||
AssocContainerId::TraitId(it) => it,
|
AssocContainerId::TraitId(it) => it,
|
||||||
|
|
|
@ -369,3 +369,72 @@ fn check_infer_with_mismatches(ra_fixture: &str, expect: Expect) {
|
||||||
actual.push('\n');
|
actual.push('\n');
|
||||||
expect.assert_eq(&actual);
|
expect.assert_eq(&actual);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn salsa_bug() {
|
||||||
|
let (mut db, pos) = TestDB::with_position(
|
||||||
|
"
|
||||||
|
//- /lib.rs
|
||||||
|
trait Index {
|
||||||
|
type Output;
|
||||||
|
}
|
||||||
|
|
||||||
|
type Key<S: UnificationStoreBase> = <S as UnificationStoreBase>::Key;
|
||||||
|
|
||||||
|
pub trait UnificationStoreBase: Index<Output = Key<Self>> {
|
||||||
|
type Key;
|
||||||
|
|
||||||
|
fn len(&self) -> usize;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait UnificationStoreMut: UnificationStoreBase {
|
||||||
|
fn push(&mut self, value: Self::Key);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let x = 1;
|
||||||
|
x.push(1);$0
|
||||||
|
}
|
||||||
|
",
|
||||||
|
);
|
||||||
|
|
||||||
|
let module = db.module_for_file(pos.file_id);
|
||||||
|
let crate_def_map = module.def_map(&db);
|
||||||
|
visit_module(&db, &crate_def_map, module.local_id, &mut |def| {
|
||||||
|
db.infer(def);
|
||||||
|
});
|
||||||
|
|
||||||
|
let new_text = "
|
||||||
|
//- /lib.rs
|
||||||
|
trait Index {
|
||||||
|
type Output;
|
||||||
|
}
|
||||||
|
|
||||||
|
type Key<S: UnificationStoreBase> = <S as UnificationStoreBase>::Key;
|
||||||
|
|
||||||
|
pub trait UnificationStoreBase: Index<Output = Key<Self>> {
|
||||||
|
type Key;
|
||||||
|
|
||||||
|
fn len(&self) -> usize;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait UnificationStoreMut: UnificationStoreBase {
|
||||||
|
fn push(&mut self, value: Self::Key);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
|
||||||
|
let x = 1;
|
||||||
|
x.push(1);
|
||||||
|
}
|
||||||
|
"
|
||||||
|
.to_string();
|
||||||
|
|
||||||
|
db.set_file_text(pos.file_id, Arc::new(new_text));
|
||||||
|
|
||||||
|
let module = db.module_for_file(pos.file_id);
|
||||||
|
let crate_def_map = module.def_map(&db);
|
||||||
|
visit_module(&db, &crate_def_map, module.local_id, &mut |def| {
|
||||||
|
db.infer(def);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
|
@ -2271,6 +2271,57 @@ fn test<T, U>() where T: Trait<U::Item>, U: Trait<T::Item> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn unselected_projection_in_trait_env_cycle_3() {
|
||||||
|
// this is a cycle, although it would be possible to handle if we didn't go
|
||||||
|
// into bindings when looking for traits
|
||||||
|
check_types(
|
||||||
|
r#"
|
||||||
|
//- /main.rs
|
||||||
|
trait Trait {
|
||||||
|
type Item;
|
||||||
|
type OtherItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test<T>() where T: Trait<OtherItem = T::Item> {
|
||||||
|
let x: T::Item = no_matter;
|
||||||
|
} //^ {unknown}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn unselected_projection_in_trait_env_no_cycle() {
|
||||||
|
// this is not a cycle
|
||||||
|
check_types(
|
||||||
|
r#"
|
||||||
|
//- /main.rs
|
||||||
|
trait Index {
|
||||||
|
type Output;
|
||||||
|
}
|
||||||
|
|
||||||
|
type Key<S: UnificationStoreBase> = <S as UnificationStoreBase>::Key;
|
||||||
|
|
||||||
|
pub trait UnificationStoreBase: Index<Output = Key<Self>> {
|
||||||
|
type Key;
|
||||||
|
|
||||||
|
fn len(&self) -> usize;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait UnificationStoreMut: UnificationStoreBase {
|
||||||
|
fn push(&mut self, value: Self::Key);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test<T>(t: T) where T: UnificationStoreMut {
|
||||||
|
let x;
|
||||||
|
t.push(x);
|
||||||
|
let y: Key<T>;
|
||||||
|
(x, y);
|
||||||
|
} //^ (UnificationStoreBase::Key<T>, UnificationStoreBase::Key<T>)
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn inline_assoc_type_bounds_1() {
|
fn inline_assoc_type_bounds_1() {
|
||||||
check_types(
|
check_types(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue