mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Merge #5437
5437: Specify default adt representation for chalk integration r=flodiebold a=detrumi Turns out that using the .chalk writer infra causes this line being hit, so let's just return the default representation for now. Co-authored-by: Wilco Kusee <wilcokusee@gmail.com>
This commit is contained in:
commit
09fab42d39
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ impl<'a> chalk_solve::RustIrDatabase<Interner> for ChalkContext<'a> {
|
|||
self.db.struct_datum(self.krate, struct_id)
|
||||
}
|
||||
fn adt_repr(&self, _struct_id: AdtId) -> rust_ir::AdtRepr {
|
||||
unreachable!()
|
||||
rust_ir::AdtRepr { repr_c: false, repr_packed: false }
|
||||
}
|
||||
fn impl_datum(&self, impl_id: ImplId) -> Arc<ImplDatum> {
|
||||
self.db.impl_datum(self.krate, impl_id)
|
||||
|
|
Loading…
Reference in a new issue