File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
kani-compiler/src/codegen_cprover_gotoc/codegen Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -625,6 +625,8 @@ impl<'tcx> GotocCtx<'tcx> {
625
625
ty:: CoroutineWitness ( _, _) | ty:: Infer ( _) | ty:: Placeholder ( _) | ty:: Error ( _) => {
626
626
unreachable ! ( "remnants of type checking" )
627
627
}
628
+ // TODO cf. https://github.com/rust-lang/rust/issues/130516
629
+ ty:: UnsafeBinder ( _) => todo ! ( ) ,
628
630
}
629
631
}
630
632
@@ -1032,6 +1034,8 @@ impl<'tcx> GotocCtx<'tcx> {
1032
1034
ty:: Infer ( _) => todo ! ( "{:?} {:?}" , pointee_type, pointee_type. kind( ) ) ,
1033
1035
ty:: Param ( _) => todo ! ( "{:?} {:?}" , pointee_type, pointee_type. kind( ) ) ,
1034
1036
ty:: Placeholder ( _) => todo ! ( "{:?} {:?}" , pointee_type, pointee_type. kind( ) ) ,
1037
+ // TODO cf. https://github.com/rust-lang/rust/issues/130516
1038
+ ty:: UnsafeBinder ( _) => todo ! ( ) ,
1035
1039
}
1036
1040
}
1037
1041
You can’t perform that action at this time.
0 commit comments