Skip to content

Commit

Permalink
rustfmt fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi Delmas committed Jan 9, 2025
1 parent 3c43721 commit f9134c8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions kani-compiler/src/codegen_cprover_gotoc/codegen/typ.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,9 @@ impl<'tcx> GotocCtx<'tcx> {
ty::CoroutineWitness(_, _) | ty::Infer(_) | ty::Placeholder(_) | ty::Error(_) => {
unreachable!("remnants of type checking")
}
ty::UnsafeBinder(_) => todo!("Implement support for UnsafeBinder https://github.com/rust-lang/rust/issues/130516"),
ty::UnsafeBinder(_) => todo!(
"Implement support for UnsafeBinder https://github.com/rust-lang/rust/issues/130516"
),
}
}

Expand Down Expand Up @@ -1033,7 +1035,9 @@ impl<'tcx> GotocCtx<'tcx> {
ty::Infer(_) => todo!("{:?} {:?}", pointee_type, pointee_type.kind()),
ty::Param(_) => todo!("{:?} {:?}", pointee_type, pointee_type.kind()),
ty::Placeholder(_) => todo!("{:?} {:?}", pointee_type, pointee_type.kind()),
ty::UnsafeBinder(_) => todo!("Implement support for UnsafeBinder https://github.com/rust-lang/rust/issues/130516"),
ty::UnsafeBinder(_) => todo!(
"Implement support for UnsafeBinder https://github.com/rust-lang/rust/issues/130516"
),
}
}

Expand Down

0 comments on commit f9134c8

Please sign in to comment.