diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-07-28 08:57:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-28 08:57:16 +0200 |
| commit | a13f40dae64647c524c8d2a64e9b30f97d391377 (patch) | |
| tree | e6ba63a91ca38d64d0dec2817883056374a9877b /compiler/rustc_builtin_macros/messages.ftl | |
| parent | 3148b35f6a6226548929c12da529ab0d1a4b47d5 (diff) | |
| parent | c7e688eccd60ab05a00dea56ac9d984397a2d02e (diff) | |
| download | rust-a13f40dae64647c524c8d2a64e9b30f97d391377.tar.gz rust-a13f40dae64647c524c8d2a64e9b30f97d391377.zip | |
Rollup merge of #127853 - folkertdev:naked-function-error-messages, r=bjorn3
`#[naked]`: report incompatible attributes tracking issue: https://github.com/rust-lang/rust/issues/90957 this is a re-implementation of https://github.com/rust-lang/rust/pull/93809 by ``@bstrie`` which was closed 2 years ago due to inactivity. This PR takes some of the final comments into account, specifically providing a little more context in error messages, and using an allow list to determine which attributes are compatible with `#[naked]`. Notable attributes that are incompatible with `#[naked]` are: * `#[inline]` * `#[track_caller]` * ~~`#[target_feature]`~~ (this is now allowed, see PR discussion) * `#[test]`, `#[ignore]`, `#[should_panic]` These attributes just directly conflict with what `#[naked]` should do. Naked functions are still important for systems programming, embedded, and operating systems, so I'd like to move them forward.
Diffstat (limited to 'compiler/rustc_builtin_macros/messages.ftl')
| -rw-r--r-- | compiler/rustc_builtin_macros/messages.ftl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/rustc_builtin_macros/messages.ftl b/compiler/rustc_builtin_macros/messages.ftl index 876f3c2b135..a30ab236213 100644 --- a/compiler/rustc_builtin_macros/messages.ftl +++ b/compiler/rustc_builtin_macros/messages.ftl @@ -220,6 +220,11 @@ builtin_macros_multiple_defaults = multiple declared defaults .note = only one variant can be default .suggestion = make `{$ident}` default +builtin_macros_naked_functions_testing_attribute = + cannot use `#[naked]` with testing attributes + .label = function marked with testing attribute here + .naked_attribute = `#[naked]` is incompatible with testing attributes + builtin_macros_no_default_variant = no default declared .help = make a unit variant default by placing `#[default]` above it .suggestion = make `{$ident}` default |
