2021-07-12 11:04:51 +00:00
|
|
|
error: incompatible link kind for `Foo::bar`
|
2021-07-19 15:00:35 +00:00
|
|
|
--> $DIR/field-ice.rs:5:7
|
2021-07-12 11:04:51 +00:00
|
|
|
|
|
|
|
|
LL | /// [`Foo::bar()`]
|
2021-07-19 15:00:35 +00:00
|
|
|
| ^^^^^^^^^^ this link resolved to a field, which is not a function
|
2021-07-12 11:04:51 +00:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/field-ice.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(rustdoc::broken_intra_doc_links)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-07-19 15:00:35 +00:00
|
|
|
help: to link to the field, remove the disambiguator
|
|
|
|
|
|
|
|
|
LL | /// [`Foo::bar`]
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~
|
2021-07-12 11:04:51 +00:00
|
|
|
|
2023-11-21 16:44:51 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-12 11:04:51 +00:00
|
|
|
|