mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
parent
19fad541bd
commit
e0c17e8777
1 changed files with 10 additions and 1 deletions
|
@ -19,7 +19,13 @@ pub(crate) fn inactive_code(
|
||||||
let mut message = "code is inactive due to #[cfg] directives".to_string();
|
let mut message = "code is inactive due to #[cfg] directives".to_string();
|
||||||
|
|
||||||
if let Some(inactive) = inactive {
|
if let Some(inactive) = inactive {
|
||||||
format_to!(message, ": {}", inactive);
|
let inactive_reasons = inactive.to_string();
|
||||||
|
|
||||||
|
if inactive_reasons.is_empty() {
|
||||||
|
format_to!(message);
|
||||||
|
} else {
|
||||||
|
format_to!(message, ": {}", inactive);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let res = Diagnostic::new(
|
let res = Diagnostic::new(
|
||||||
|
@ -91,6 +97,9 @@ fn f() {
|
||||||
|
|
||||||
#[cfg(feature = "std")] use std;
|
#[cfg(feature = "std")] use std;
|
||||||
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ weak: code is inactive due to #[cfg] directives: feature = "std" is disabled
|
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ weak: code is inactive due to #[cfg] directives: feature = "std" is disabled
|
||||||
|
|
||||||
|
#[cfg(any())] pub fn f() {}
|
||||||
|
//^^^^^^^^^^^^^^^^^^^^^^^^^^^ weak: code is inactive due to #[cfg] directives
|
||||||
"#,
|
"#,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue