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