2022-08-03 03:11:22 +00:00
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on foreign module
|
2020-11-25 13:27:51 +00:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:7:7
|
2020-07-06 14:11:32 +00:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "foo")]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on implementation block
|
2020-11-25 13:27:51 +00:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:10:7
|
2020-07-06 14:11:32 +00:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "bar")]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on implementation block
|
2020-11-25 13:27:51 +00:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:16:7
|
2020-07-06 14:11:32 +00:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "foobar")]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-07-23 19:04:54 +00:00
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on type alias in implementation block
|
2020-11-25 13:27:51 +00:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:18:11
|
2020-07-23 19:04:54 +00:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "assoc")]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2020-08-11 22:12:49 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2020-07-06 14:11:32 +00:00
|
|
|
|