Skip to content
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: Identifiers named gen should be renamed to raw r#gen #3093

Closed
liss-h opened this issue Jan 17, 2025 · 2 comments
Closed

Edition 2024: Identifiers named gen should be renamed to raw r#gen #3093

liss-h opened this issue Jan 17, 2025 · 2 comments

Comments

@liss-h
Copy link

liss-h commented Jan 17, 2025

Hi, I understand that edition 2024 is not stable yet, but I wanted to notify you in advance of its stabilization (which will be in the next stable rust release as far as I understood).

Currently, bindgen cannot generate correct bindings for edition 2024, because it does not take the new reserved gen keyword into consideration, i.e. it incorrectly does not generate a raw identifier (r#gen).

Versions

  • rustc 1.86.0-nightly (in edition 2024 mode)
  • bindgen 0.71.1 (library)

Example

C Function:

void f(int gen);

Generated:

unsafe extern "C" {
    pub fn f(gen: i32);
}

Expected:

unsafe extern "C" {
    pub fn f(r#gen: i32);
}
@loftyinclination
Copy link
Contributor

Mangling identifiers is done in rust_mangle. This wouldn't result in the format that you've suggested (r#gen), instead it suffixes the identifier with an underscore (gen_), but that's the behaviour for all other keywords too.

jinghao-jia added a commit to rex-rs/rex that referenced this issue Feb 21, 2025
Bindings generated by bindgen are currently still not fully compliant
with the 2024 edition ([1] in particular).

Link: rust-lang/rust-bindgen#3093 [1]
Signed-off-by: Jinghao Jia <[email protected]>
@dcoles
Copy link

dcoles commented Feb 27, 2025

Can this be closed now that #3100 has been merged?

@liss-h liss-h closed this as completed Mar 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants