We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d3c0d commit 8582bc4Copy full SHA for 8582bc4
src/base.rs
@@ -223,8 +223,8 @@ pub fn compile_codegen_unit(
223
}
224
225
// ... and now that we have everything pre-defined, fill out those definitions.
226
- for &(mono_item, _) in &mono_items {
227
- mono_item.define::<Builder<'_, '_, '_>>(&cx);
+ for &(mono_item, item_data) in &mono_items {
+ mono_item.define::<Builder<'_, '_, '_>>(&cx, item_data);
228
229
230
// If this codegen unit contains the main function, also create the
0 commit comments