Closed
Description
This issue tracks the release notes text for #132397.
Steps
- Proposed text is drafted by PR author (or team) making the noteworthy change.
- Issue is nominated for release team review of clarity for wider audience.
- Release team includes text in release notes/blog posts.
Release notes text
The responsible team for the underlying change should edit this section to replace the automatically generated link with a succinct description of what changed, drawing upon text proposed by the author (either in discussion or through direct editing).
# Language
- [The `missing_abi` lint now warns-by-default.](https://github.com/rust-lang/rust/pull/132397)
Tip
Use the previous releases categories to help choose which one(s) to use.
The category will be de-duplicated with all the other ones by the release team.
More than one section can be included if needed.
Release blog section
If the change is notable enough for inclusion in the blog post, the responsible team should add content to this section.
Otherwise leave it empty.
Omitting the ABI in extern blocks and functions (e.g. `extern {}` and `extern fn`)
will now result in a warning (via the `missing_abi` lint). Omitting the ABI after
the `extern` keyword has always implicitly resulted in the `"C"` ABI. It is now
recommended to explicitly specify the `"C"` ABI (e.g. `extern "C" {}` and
`extern "C" fn`).
cc @m-ou-se, @traviscross -- origin issue/PR authors and assignees for starting to draft text
Metadata
Metadata
Assignees
Labels
Area: Lints (warnings about flaws in source code) such as unused_mut.Lint: missing_abiRelevant to the language team, which will review and decide on the PR/issue.Marks issues tracking what text to put in the release blog post.Marks issues that should be documented in the release notes of the next release.Marks issues tracking what text to put in release notes.