1
Fork 0

Implement dummy query responses and a jank instantiate

This commit is contained in:
Michael Goulet 2023-01-10 20:24:10 +00:00
parent 1bc3683b32
commit 5a31d5ebe2
5 changed files with 97 additions and 38 deletions

View file

@ -62,7 +62,7 @@ impl<'tcx> TraitEngine<'tcx> for FulfillmentCtxt<'tcx> {
let mut errors = Vec::new();
for i in 0.. {
if !infcx.tcx.recursion_limit().value_within_limit(i) {
unimplemented!("overflow")
unimplemented!("overflowed on pending obligations: {:?}", self.obligations);
}
let mut has_changed = false;