We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#[no_mangle] unsafe extern "C" fn valist(c: *const u8, mut ap: ...) { let x = ap.arg::<u32>(); }
will cause a panic on the variable index (off by one) here:
c2rust/c2rust-refactor/src/analysis/labeled_ty.rs
Line 185 in 3502f48
The text was updated successfully, but these errors were encountered:
This is currently worked around in my local analysis branch, by calling get rather than indexing.
get
Sorry, something went wrong.
No branches or pull requests
will cause a panic on the variable index (off by one) here:
c2rust/c2rust-refactor/src/analysis/labeled_ty.rs
Line 185 in 3502f48
The text was updated successfully, but these errors were encountered: