rust/compiler/rustc_lint
Jubilee 6b0c8cfedc
Rollup merge of #132357 - m-ou-se:explicit-abi, r=compiler-errors
Improve missing_abi lint

This is for the migration lint for https://github.com/rust-lang/rfcs/pull/3722

It is not yet marked as an edition migration lint, because `Edition2027` doesn't exist yet.

The lint now includes a machine applicable suggestion:

```
warning: extern declarations without an explicit ABI are deprecated
 --> src/main.rs:3:1
  |
3 | extern fn a() {}
  | ^^^^^^ help: explicitly specify the C ABI: `extern "C"`
  |
```
2024-10-31 17:50:41 -07:00
..
src Rollup merge of #132357 - m-ou-se:explicit-abi, r=compiler-errors 2024-10-31 17:50:41 -07:00
Cargo.toml compiler: Depend on rustc_abi in rustc_lint 2024-10-27 23:59:31 -07:00
messages.ftl Improve the missing_abi lint. 2024-10-31 10:55:45 +01:00