Skip to content

Commit f40e86e

Browse files
committed
todo!() -> unimplemented!() // FIXME for CI
1 parent 56a8a76 commit f40e86e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

crates/hir_ty/src/traits/chalk.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,13 +334,15 @@ impl<'a> chalk_solve::RustIrDatabase<Interner> for ChalkContext<'a> {
334334
&self,
335335
_: chalk_ir::GeneratorId<Interner>,
336336
) -> std::sync::Arc<chalk_solve::rust_ir::GeneratorDatum<Interner>> {
337-
todo!()
337+
// FIXME
338+
unimplemented!()
338339
}
339340
fn generator_witness_datum(
340341
&self,
341342
_: chalk_ir::GeneratorId<Interner>,
342343
) -> std::sync::Arc<chalk_solve::rust_ir::GeneratorWitnessDatum<Interner>> {
343-
todo!()
344+
// FIXME
345+
unimplemented!()
344346
}
345347
}
346348

crates/hir_ty/src/traits/chalk/mapping.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ impl ToChalk for TypeCtor {
399399
// this should not be reached, since we don't represent TypeName::Error with TypeCtor
400400
unreachable!()
401401
}
402-
_ => todo!(),
402+
_ => unimplemented!(), // FIXME
403403
}
404404
}
405405
}

0 commit comments

Comments
 (0)