diff options
| author | Ralf Jung <post@ralfj.de> | 2024-10-05 17:12:46 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-10-05 17:12:46 +0200 |
| commit | 8faf3722ac963a637265c3fb087fce08f9ceb163 (patch) | |
| tree | d6ba3f8af5591fa2b3295a3d7b27f2599c0d440a | |
| parent | f559d6188828b738ce7e7c2e4d99bf03111336d6 (diff) | |
| download | rust-8faf3722ac963a637265c3fb087fce08f9ceb163.tar.gz rust-8faf3722ac963a637265c3fb087fce08f9ceb163.zip | |
fix typo in 'lang item with track_caller' message
| -rw-r--r-- | compiler/rustc_passes/messages.ftl | 2 | ||||
| -rw-r--r-- | tests/ui/panic-handler/panic-handler-with-track-caller.stderr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_passes/messages.ftl b/compiler/rustc_passes/messages.ftl index 5369f54afb9..f2682acf8aa 100644 --- a/compiler/rustc_passes/messages.ftl +++ b/compiler/rustc_passes/messages.ftl @@ -391,7 +391,7 @@ passes_lang_item_fn_with_target_feature = passes_lang_item_fn_with_track_caller = {passes_lang_item_fn} is not allowed to have `#[track_caller]` - .label = {passes_lang_item_fn} is not allowed to have `#[target_feature]` + .label = {passes_lang_item_fn} is not allowed to have `#[track_caller]` passes_lang_item_on_incorrect_target = `{$name}` lang item must be applied to a {$expected_target} diff --git a/tests/ui/panic-handler/panic-handler-with-track-caller.stderr b/tests/ui/panic-handler/panic-handler-with-track-caller.stderr index 9ed387fc8d1..605567acdb5 100644 --- a/tests/ui/panic-handler/panic-handler-with-track-caller.stderr +++ b/tests/ui/panic-handler/panic-handler-with-track-caller.stderr @@ -5,7 +5,7 @@ LL | #[track_caller] | ^^^^^^^^^^^^^^^ LL | LL | fn panic(info: &PanicInfo) -> ! { - | ------------------------------- `#[panic_handler]` function is not allowed to have `#[target_feature]` + | ------------------------------- `#[panic_handler]` function is not allowed to have `#[track_caller]` error: aborting due to 1 previous error |
