-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edition 2024 unsafe_attr_outside_unsafe
migration produces invalid suggestion
#133994
Comments
This was probably fixed |
Tagging as |
Reduction of the macro: use proc_macro::TokenStream;
use quote::quote_spanned;
use syn::{parse_macro_input, ForeignItemFn};
#[proc_macro_attribute]
pub fn bridge(_: TokenStream, input: TokenStream) -> TokenStream {
let ffi = parse_macro_input!(input as ForeignItemFn);
let body_span = ffi.semi_token.span;
quote_spanned! {body_span=>
#[export_name = "foo"]
unsafe extern "C" fn bar() {}
}
.into()
} called as: #[cxxbridge_macro::bridge]
fn cxx_log(); The problem is that @rustbot label: -E-needs-mcve -L-missing_unsafe_on_extern +L-unsafe_attr_outside_unsafe |
cxx
are in useunsafe_attr_outside_unsafe
migration produces invalid suggestion
We can close this as it was fixed on the |
Is the error explosion of broken syntax is an acceptable result of running If tooling is going to fail, I would expect better than barfing out a non-actionable mess that doesn't do anything to guide me toward the actual problem/fix. How are users supposed to know to update It would be a big improvement for it to say "there's a macro in use here, and I'm unable to generate a fix. You may need to update the crate ____ containing the macro." |
@traviscross Would you consider reopening this? I don't think "fixed by cxx" is really addressing the issue here, which is that |
I ran
cargo +nightly fix --edition
on the following code:Note that the
cxx
version matters. 1.0.78 .. 1.0.129 fail, 1.0.130 .. 1.0.133 succeed.I expected to see this happen: Migration succeeds.
Instead, this happened:
Cargo then repeated all of that error output a second time; I'm not sure why.
This happens in a new project with no other files present (i.e. no C/C++ header files or
build.rs
).Meta
rustc --version --verbose
:The text was updated successfully, but these errors were encountered: