We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e49dd1a commit 144c345Copy full SHA for 144c345
prusti/src/callbacks.rs
@@ -156,7 +156,12 @@ impl prusti_rustc_interface::driver::Callbacks for PrustiCompilerCalls {
156
println!("{value}");
157
}
158
159
- CrossCrateSpecs::import_export_cross_crate(&mut env, &mut def_spec);
+
160
+ // FIXME: `prusti-std` has specs which unsafe core proof does not support
161
+ if !config::unsafe_core_proof() {
162
+ CrossCrateSpecs::import_export_cross_crate(&mut env, &mut def_spec);
163
+ }
164
165
if !config::no_verify() {
166
verify(env, def_spec);
167
0 commit comments