docs: check if the disambiguator matches its suffix
This commit is contained in:
parent
9c3bc805dd
commit
8d27980325
@ -1507,6 +1507,15 @@ impl Disambiguator {
|
|||||||
fn from_str(link: &str) -> Result<Option<(Self, &str, &str)>, (String, Range<usize>)> {
|
fn from_str(link: &str) -> Result<Option<(Self, &str, &str)>, (String, Range<usize>)> {
|
||||||
use Disambiguator::{Kind, Namespace as NS, Primitive};
|
use Disambiguator::{Kind, Namespace as NS, Primitive};
|
||||||
|
|
||||||
|
let suffixes = [
|
||||||
|
// If you update this list, please also update the relevant rustdoc book section!
|
||||||
|
("!()", DefKind::Macro(MacroKind::Bang)),
|
||||||
|
("!{}", DefKind::Macro(MacroKind::Bang)),
|
||||||
|
("![]", DefKind::Macro(MacroKind::Bang)),
|
||||||
|
("()", DefKind::Fn),
|
||||||
|
("!", DefKind::Macro(MacroKind::Bang)),
|
||||||
|
];
|
||||||
|
|
||||||
if let Some(idx) = link.find('@') {
|
if let Some(idx) = link.find('@') {
|
||||||
let (prefix, rest) = link.split_at(idx);
|
let (prefix, rest) = link.split_at(idx);
|
||||||
let d = match prefix {
|
let d = match prefix {
|
||||||
@ -1530,16 +1539,23 @@ impl Disambiguator {
|
|||||||
"prim" | "primitive" => Primitive,
|
"prim" | "primitive" => Primitive,
|
||||||
_ => return Err((format!("unknown disambiguator `{prefix}`"), 0..idx)),
|
_ => return Err((format!("unknown disambiguator `{prefix}`"), 0..idx)),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
for (suffix, kind) in suffixes {
|
||||||
|
if let Some(path_str) = rest.strip_suffix(suffix) {
|
||||||
|
if d.ns() != Kind(kind).ns() {
|
||||||
|
return Err((
|
||||||
|
format!("unmatched disambiguator `{prefix}` and suffix `{suffix}`"),
|
||||||
|
0..idx,
|
||||||
|
));
|
||||||
|
} else if path_str.len() > 1 {
|
||||||
|
// path_str != "@"
|
||||||
|
return Ok(Some((d, &path_str[1..], &rest[1..])));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(Some((d, &rest[1..], &rest[1..])))
|
Ok(Some((d, &rest[1..], &rest[1..])))
|
||||||
} else {
|
} else {
|
||||||
let suffixes = [
|
|
||||||
// If you update this list, please also update the relevant rustdoc book section!
|
|
||||||
("!()", DefKind::Macro(MacroKind::Bang)),
|
|
||||||
("!{}", DefKind::Macro(MacroKind::Bang)),
|
|
||||||
("![]", DefKind::Macro(MacroKind::Bang)),
|
|
||||||
("()", DefKind::Fn),
|
|
||||||
("!", DefKind::Macro(MacroKind::Bang)),
|
|
||||||
];
|
|
||||||
for (suffix, kind) in suffixes {
|
for (suffix, kind) in suffixes {
|
||||||
if let Some(path_str) = link.strip_suffix(suffix) {
|
if let Some(path_str) = link.strip_suffix(suffix) {
|
||||||
// Avoid turning `!` or `()` into an empty string
|
// Avoid turning `!` or `()` into an empty string
|
||||||
|
110
tests/rustdoc-ui/disambiguator-endswith-named-suffix.rs
Normal file
110
tests/rustdoc-ui/disambiguator-endswith-named-suffix.rs
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
//@ check-pass
|
||||||
|
|
||||||
|
//! [struct@m!()] //~ WARN: unmatched disambiguator `struct` and suffix `!()`
|
||||||
|
//! [struct@m!{}]
|
||||||
|
//! [struct@m![]]
|
||||||
|
//! [struct@f()] //~ WARN: unmatched disambiguator `struct` and suffix `()`
|
||||||
|
//! [struct@m!] //~ WARN: unmatched disambiguator `struct` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [enum@m!()] //~ WARN: unmatched disambiguator `enum` and suffix `!()`
|
||||||
|
//! [enum@m!{}]
|
||||||
|
//! [enum@m![]]
|
||||||
|
//! [enum@f()] //~ WARN: unmatched disambiguator `enum` and suffix `()`
|
||||||
|
//! [enum@m!] //~ WARN: unmatched disambiguator `enum` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [trait@m!()] //~ WARN: unmatched disambiguator `trait` and suffix `!()`
|
||||||
|
//! [trait@m!{}]
|
||||||
|
//! [trait@m![]]
|
||||||
|
//! [trait@f()] //~ WARN: unmatched disambiguator `trait` and suffix `()`
|
||||||
|
//! [trait@m!] //~ WARN: unmatched disambiguator `trait` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [module@m!()] //~ WARN: unmatched disambiguator `module` and suffix `!()`
|
||||||
|
//! [module@m!{}]
|
||||||
|
//! [module@m![]]
|
||||||
|
//! [module@f()] //~ WARN: unmatched disambiguator `module` and suffix `()`
|
||||||
|
//! [module@m!] //~ WARN: unmatched disambiguator `module` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [mod@m!()] //~ WARN: unmatched disambiguator `mod` and suffix `!()`
|
||||||
|
//! [mod@m!{}]
|
||||||
|
//! [mod@m![]]
|
||||||
|
//! [mod@f()] //~ WARN: unmatched disambiguator `mod` and suffix `()`
|
||||||
|
//! [mod@m!] //~ WARN: unmatched disambiguator `mod` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [const@m!()] //~ WARN: unmatched disambiguator `const` and suffix `!()`
|
||||||
|
//! [const@m!{}]
|
||||||
|
//! [const@m![]]
|
||||||
|
//! [const@f()] //~ WARN: incompatible link kind for `f`
|
||||||
|
//! [const@m!] //~ WARN: unmatched disambiguator `const` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [constant@m!()] //~ WARN: unmatched disambiguator `constant` and suffix `!()`
|
||||||
|
//! [constant@m!{}]
|
||||||
|
//! [constant@m![]]
|
||||||
|
//! [constant@f()] //~ WARN: incompatible link kind for `f`
|
||||||
|
//! [constant@m!] //~ WARN: unmatched disambiguator `constant` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [static@m!()] //~ WARN: unmatched disambiguator `static` and suffix `!()`
|
||||||
|
//! [static@m!{}]
|
||||||
|
//! [static@m![]]
|
||||||
|
//! [static@f()] //~ WARN: incompatible link kind for `f`
|
||||||
|
//! [static@m!] //~ WARN: unmatched disambiguator `static` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [function@m!()] //~ WARN: unmatched disambiguator `function` and suffix `!()`
|
||||||
|
//! [function@m!{}]
|
||||||
|
//! [function@m![]]
|
||||||
|
//! [function@f()]
|
||||||
|
//! [function@m!] //~ WARN: unmatched disambiguator `function` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [fn@m!()] //~ WARN: unmatched disambiguator `fn` and suffix `!()`
|
||||||
|
//! [fn@m!{}]
|
||||||
|
//! [fn@m![]]
|
||||||
|
//! [fn@f()]
|
||||||
|
//! [fn@m!] //~ WARN: unmatched disambiguator `fn` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [method@m!()] //~ WARN: unmatched disambiguator `method` and suffix `!()`
|
||||||
|
//! [method@m!{}]
|
||||||
|
//! [method@m![]]
|
||||||
|
//! [method@f()]
|
||||||
|
//! [method@m!] //~ WARN: unmatched disambiguator `method` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [derive@m!()] //~ WARN: incompatible link kind for `m`
|
||||||
|
//! [derive@m!{}] //~ WARN: incompatible link kind for `m`
|
||||||
|
//! [derive@m![]]
|
||||||
|
//! [derive@f()] //~ WARN: unmatched disambiguator `derive` and suffix `()`
|
||||||
|
//! [derive@m!] //~ WARN: incompatible link kind for `m`
|
||||||
|
//!
|
||||||
|
//! [type@m!()] //~ WARN: unmatched disambiguator `type` and suffix `!()`
|
||||||
|
//! [type@m!{}]
|
||||||
|
//! [type@m![]]
|
||||||
|
//! [type@f()] //~ WARN: unmatched disambiguator `type` and suffix `()`
|
||||||
|
//! [type@m!] //~ WARN: unmatched disambiguator `type` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [value@m!()] //~ WARN: unmatched disambiguator `value` and suffix `!()`
|
||||||
|
//! [value@m!{}]
|
||||||
|
//! [value@m![]]
|
||||||
|
//! [value@f()]
|
||||||
|
//! [value@m!] //~ WARN: unmatched disambiguator `value` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [macro@m!()]
|
||||||
|
//! [macro@m!{}]
|
||||||
|
//! [macro@m![]]
|
||||||
|
//! [macro@f()] //~ WARN: unmatched disambiguator `macro` and suffix `()`
|
||||||
|
//! [macro@m!]
|
||||||
|
//!
|
||||||
|
//! [prim@m!()] //~ WARN: unmatched disambiguator `prim` and suffix `!()`
|
||||||
|
//! [prim@m!{}]
|
||||||
|
//! [prim@m![]]
|
||||||
|
//! [prim@f()] //~ WARN: unmatched disambiguator `prim` and suffix `()`
|
||||||
|
//! [prim@m!] //~ WARN: unmatched disambiguator `prim` and suffix `!`
|
||||||
|
//!
|
||||||
|
//! [primitive@m!()] //~ WARN: unmatched disambiguator `primitive` and suffix `!()`
|
||||||
|
//! [primitive@m!{}]
|
||||||
|
//! [primitive@m![]]
|
||||||
|
//! [primitive@f()] //~ WARN: unmatched disambiguator `primitive` and suffix `()`
|
||||||
|
//! [primitive@m!] //~ WARN: unmatched disambiguator `primitive` and suffix `!`
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! m {
|
||||||
|
() => {};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn f() {}
|
395
tests/rustdoc-ui/disambiguator-endswith-named-suffix.stderr
Normal file
395
tests/rustdoc-ui/disambiguator-endswith-named-suffix.stderr
Normal file
@ -0,0 +1,395 @@
|
|||||||
|
warning: unmatched disambiguator `struct` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:3:6
|
||||||
|
|
|
||||||
|
LL | //! [struct@m!()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
= note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `struct` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:6:6
|
||||||
|
|
|
||||||
|
LL | //! [struct@f()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `struct` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:7:6
|
||||||
|
|
|
||||||
|
LL | //! [struct@m!]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `enum` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:9:6
|
||||||
|
|
|
||||||
|
LL | //! [enum@m!()]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `enum` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:12:6
|
||||||
|
|
|
||||||
|
LL | //! [enum@f()]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `enum` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:13:6
|
||||||
|
|
|
||||||
|
LL | //! [enum@m!]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `trait` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:15:6
|
||||||
|
|
|
||||||
|
LL | //! [trait@m!()]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `trait` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:18:6
|
||||||
|
|
|
||||||
|
LL | //! [trait@f()]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `trait` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:19:6
|
||||||
|
|
|
||||||
|
LL | //! [trait@m!]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `module` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:21:6
|
||||||
|
|
|
||||||
|
LL | //! [module@m!()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `module` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:24:6
|
||||||
|
|
|
||||||
|
LL | //! [module@f()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `module` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:25:6
|
||||||
|
|
|
||||||
|
LL | //! [module@m!]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `mod` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:27:6
|
||||||
|
|
|
||||||
|
LL | //! [mod@m!()]
|
||||||
|
| ^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `mod` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:30:6
|
||||||
|
|
|
||||||
|
LL | //! [mod@f()]
|
||||||
|
| ^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `mod` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:31:6
|
||||||
|
|
|
||||||
|
LL | //! [mod@m!]
|
||||||
|
| ^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `const` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:33:6
|
||||||
|
|
|
||||||
|
LL | //! [const@m!()]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: incompatible link kind for `f`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:36:6
|
||||||
|
|
|
||||||
|
LL | //! [const@f()]
|
||||||
|
| ^^^^^^^^^ this link resolved to a function, which is not a constant
|
||||||
|
|
|
||||||
|
help: to link to the function, add parentheses
|
||||||
|
|
|
||||||
|
LL - //! [const@f()]
|
||||||
|
LL + //! [f()]
|
||||||
|
|
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `const` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:37:6
|
||||||
|
|
|
||||||
|
LL | //! [const@m!]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `constant` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:39:6
|
||||||
|
|
|
||||||
|
LL | //! [constant@m!()]
|
||||||
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: incompatible link kind for `f`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:42:6
|
||||||
|
|
|
||||||
|
LL | //! [constant@f()]
|
||||||
|
| ^^^^^^^^^^^^ this link resolved to a function, which is not a constant
|
||||||
|
|
|
||||||
|
help: to link to the function, add parentheses
|
||||||
|
|
|
||||||
|
LL - //! [constant@f()]
|
||||||
|
LL + //! [f()]
|
||||||
|
|
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `constant` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:43:6
|
||||||
|
|
|
||||||
|
LL | //! [constant@m!]
|
||||||
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `static` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:45:6
|
||||||
|
|
|
||||||
|
LL | //! [static@m!()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: incompatible link kind for `f`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:48:6
|
||||||
|
|
|
||||||
|
LL | //! [static@f()]
|
||||||
|
| ^^^^^^^^^^ this link resolved to a function, which is not a static
|
||||||
|
|
|
||||||
|
help: to link to the function, add parentheses
|
||||||
|
|
|
||||||
|
LL - //! [static@f()]
|
||||||
|
LL + //! [f()]
|
||||||
|
|
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `static` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:49:6
|
||||||
|
|
|
||||||
|
LL | //! [static@m!]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `function` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:51:6
|
||||||
|
|
|
||||||
|
LL | //! [function@m!()]
|
||||||
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `function` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:55:6
|
||||||
|
|
|
||||||
|
LL | //! [function@m!]
|
||||||
|
| ^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `fn` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:57:6
|
||||||
|
|
|
||||||
|
LL | //! [fn@m!()]
|
||||||
|
| ^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `fn` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:61:6
|
||||||
|
|
|
||||||
|
LL | //! [fn@m!]
|
||||||
|
| ^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `method` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:63:6
|
||||||
|
|
|
||||||
|
LL | //! [method@m!()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `method` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:67:6
|
||||||
|
|
|
||||||
|
LL | //! [method@m!]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: incompatible link kind for `m`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:69:6
|
||||||
|
|
|
||||||
|
LL | //! [derive@m!()]
|
||||||
|
| ^^^^^^^^^^^ this link resolved to a macro, which is not a derive macro
|
||||||
|
|
|
||||||
|
help: to link to the macro, add an exclamation mark
|
||||||
|
|
|
||||||
|
LL - //! [derive@m!()]
|
||||||
|
LL + //! [m!!()]
|
||||||
|
|
|
||||||
|
|
||||||
|
warning: incompatible link kind for `m`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:70:6
|
||||||
|
|
|
||||||
|
LL | //! [derive@m!{}]
|
||||||
|
| ^^^^^^^^^^^ this link resolved to a macro, which is not a derive macro
|
||||||
|
|
|
||||||
|
help: to link to the macro, add an exclamation mark
|
||||||
|
|
|
||||||
|
LL - //! [derive@m!{}]
|
||||||
|
LL + //! [m!!{}]
|
||||||
|
|
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `derive` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:72:6
|
||||||
|
|
|
||||||
|
LL | //! [derive@f()]
|
||||||
|
| ^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: incompatible link kind for `m`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:73:6
|
||||||
|
|
|
||||||
|
LL | //! [derive@m!]
|
||||||
|
| ^^^^^^^^^ this link resolved to a macro, which is not a derive macro
|
||||||
|
|
|
||||||
|
help: to link to the macro, add an exclamation mark
|
||||||
|
|
|
||||||
|
LL - //! [derive@m!]
|
||||||
|
LL + //! [m!!]
|
||||||
|
|
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `type` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:75:6
|
||||||
|
|
|
||||||
|
LL | //! [type@m!()]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `type` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:78:6
|
||||||
|
|
|
||||||
|
LL | //! [type@f()]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `type` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:79:6
|
||||||
|
|
|
||||||
|
LL | //! [type@m!]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `value` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:81:6
|
||||||
|
|
|
||||||
|
LL | //! [value@m!()]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `value` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:85:6
|
||||||
|
|
|
||||||
|
LL | //! [value@m!]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `macro` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:90:6
|
||||||
|
|
|
||||||
|
LL | //! [macro@f()]
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `prim` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:93:6
|
||||||
|
|
|
||||||
|
LL | //! [prim@m!()]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `prim` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:96:6
|
||||||
|
|
|
||||||
|
LL | //! [prim@f()]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `prim` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:97:6
|
||||||
|
|
|
||||||
|
LL | //! [prim@m!]
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `primitive` and suffix `!()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:99:6
|
||||||
|
|
|
||||||
|
LL | //! [primitive@m!()]
|
||||||
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `primitive` and suffix `()`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:102:6
|
||||||
|
|
|
||||||
|
LL | //! [primitive@f()]
|
||||||
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: unmatched disambiguator `primitive` and suffix `!`
|
||||||
|
--> $DIR/disambiguator-endswith-named-suffix.rs:103:6
|
||||||
|
|
|
||||||
|
LL | //! [primitive@m!]
|
||||||
|
| ^^^^^^^^^
|
||||||
|
|
|
||||||
|
= note: see https://doc.rust-lang.org/nightly/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
|
||||||
|
|
||||||
|
warning: 46 warnings emitted
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user