You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compiler/rustc_attr_parsing/messages.ftl
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -223,7 +223,6 @@ attr_parsing_unexpected_cfg_add_build_rs_println = or consider adding `{$build_r
223
223
attr_parsing_unexpected_cfg_add_cargo_feature = consider using a Cargo feature instead
224
224
attr_parsing_unexpected_cfg_add_cargo_toml_lint_cfg = or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:{$cargo_toml_lint_cfg}
225
225
attr_parsing_unexpected_cfg_add_cmdline_arg = to expect this configuration use `{$cmdline_arg}`
226
-
attr_parsing_unexpected_cfg_cargo_update = the {$macro_kind} `{$macro_name}` may come from an old version of the `{$crate_name}` crate, try updating your dependency with `cargo update -p {$crate_name}`
227
226
228
227
attr_parsing_unexpected_cfg_define_features = consider defining some features in `Cargo.toml`
229
228
attr_parsing_unexpected_cfg_doc_cargo = see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
Copy file name to clipboardExpand all lines: tests/ui/check-cfg/report-in-external-macros.cargo.stderr
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,6 @@ LL | cfg_macro::my_lib_macro!();
7
7
= help: expected names are: `feature` and 31 more
8
8
= note: using a cfg inside a macro will use the cfgs from the destination crate and not the ones from the defining crate
9
9
= help: try referring to `cfg_macro::my_lib_macro` crate for guidance on how handle this unexpected cfg
10
-
= help: the macro `cfg_macro::my_lib_macro` may come from an old version of the `cfg_macro` crate, try updating your dependency with `cargo update -p cfg_macro`
11
10
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
12
11
= note: `#[warn(unexpected_cfgs)]` on by default
13
12
= note: this warning originates in the macro `cfg_macro::my_lib_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: expected values for `panic` are: `abort`, `immediate-abort`, and `unwind`
22
21
= note: using a cfg inside a macro will use the cfgs from the destination crate and not the ones from the defining crate
23
22
= help: try referring to `cfg_macro::my_lib_macro_value` crate for guidance on how handle this unexpected cfg
24
-
= help: the macro `cfg_macro::my_lib_macro_value` may come from an old version of the `cfg_macro` crate, try updating your dependency with `cargo update -p cfg_macro`
25
23
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
26
24
= note: this warning originates in the macro `cfg_macro::my_lib_macro_value` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: using a cfg inside a macro will use the cfgs from the destination crate and not the ones from the defining crate
36
34
= help: try referring to `cfg_macro::my_lib_macro_feature` crate for guidance on how handle this unexpected cfg
37
-
= help: the macro `cfg_macro::my_lib_macro_feature` may come from an old version of the `cfg_macro` crate, try updating your dependency with `cargo update -p cfg_macro`
38
35
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
39
36
= note: this warning originates in the macro `cfg_macro::my_lib_macro_feature` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments