mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
todo!()
-> unimplemented!() // FIXME
for CI
This commit is contained in:
parent
56a8a7645f
commit
f40e86e141
@ -334,13 +334,15 @@ impl<'a> chalk_solve::RustIrDatabase<Interner> for ChalkContext<'a> {
|
||||
&self,
|
||||
_: chalk_ir::GeneratorId<Interner>,
|
||||
) -> std::sync::Arc<chalk_solve::rust_ir::GeneratorDatum<Interner>> {
|
||||
todo!()
|
||||
// FIXME
|
||||
unimplemented!()
|
||||
}
|
||||
fn generator_witness_datum(
|
||||
&self,
|
||||
_: chalk_ir::GeneratorId<Interner>,
|
||||
) -> std::sync::Arc<chalk_solve::rust_ir::GeneratorWitnessDatum<Interner>> {
|
||||
todo!()
|
||||
// FIXME
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -399,7 +399,7 @@ impl ToChalk for TypeCtor {
|
||||
// this should not be reached, since we don't represent TypeName::Error with TypeCtor
|
||||
unreachable!()
|
||||
}
|
||||
_ => todo!(),
|
||||
_ => unimplemented!(), // FIXME
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user