-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lintsC-bugCategory: This is a bug.Category: This is a bug.
Description
error[E0609]: no field `opts` on type `*mut rustc::session::Session`
--> src/lib.rs:143:54
|
143 | (sess as *const Session as *mut Session).opts.cli_forced_codegen_units = Some(1);
| ^^^^
help: `sess as *const Session as *mut Session` is a native pointer; try dereferencing it
|
143 | (sess as *const Session as *mut Session).(*sess as *const Session as *mut Session).opts.cli_forced_codegen_units = Some(1);
|
Metadata
Metadata
Assignees
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lintsC-bugCategory: This is a bug.Category: This is a bug.