Skip to content

Commit 80c17b8

Browse files
authored
Merge pull request #471 from jackh726/rust_ir_fix
Fix references to chalk_rust_ir
2 parents 1f9c529 + 5792d72 commit 80c17b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/panic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use chalk_integration::interner::{ChalkIr, RawId};
22
use chalk_ir::*;
3-
use chalk_rust_ir::*;
3+
use chalk_solve::rust_ir::*;
44
use chalk_solve::{RustIrDatabase, SolverChoice};
55
use std::sync::Arc;
66

@@ -54,7 +54,7 @@ impl RustIrDatabase<ChalkIr> for MockDatabase {
5454
}
5555

5656
assert_eq!(id.0.index, 0);
57-
Arc::new(chalk_rust_ir::TraitDatum {
57+
Arc::new(TraitDatum {
5858
id,
5959
binders: Binders::new(
6060
VariableKinds::new(&ChalkIr),

0 commit comments

Comments
 (0)