26 lines
775 B
Text
26 lines
775 B
Text
error: `#[doc(alias = "...")]` isn't allowed on foreign module
|
|
--> $DIR/check-doc-alias-attr-location.rs:7:15
|
|
|
|
|
LL | #[doc(alias = "foo")]
|
|
| ^^^^^
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on implementation block
|
|
--> $DIR/check-doc-alias-attr-location.rs:10:15
|
|
|
|
|
LL | #[doc(alias = "bar")]
|
|
| ^^^^^
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on implementation block
|
|
--> $DIR/check-doc-alias-attr-location.rs:16:15
|
|
|
|
|
LL | #[doc(alias = "foobar")]
|
|
| ^^^^^^^^
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on type alias in implementation block
|
|
--> $DIR/check-doc-alias-attr-location.rs:18:19
|
|
|
|
|
LL | #[doc(alias = "assoc")]
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|