2021-06-15 12:01:11 -05:00
|
|
|
error: allow, cfg, cfg_attr, deny, forbid, and warn are the only allowed built-in attributes in function parameters
|
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:22:12
|
|
|
|
|
|
|
|
|
LL | fn foo(#[doc(alias = "qux")] _x: u32) -> Self::X {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-08-01 10:37:30 -05:00
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on extern block
|
2021-01-05 09:20:46 -06:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:9:7
|
2020-08-01 10:37:30 -05:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "foo")]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on implementation block
|
2021-01-05 09:20:46 -06:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:12:7
|
2020-08-01 10:37:30 -05:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "bar")]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on implementation block
|
2021-01-05 09:20:46 -06:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:18:7
|
2020-08-01 10:37:30 -05:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "foobar")]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: `#[doc(alias = "...")]` isn't allowed on type alias in implementation block
|
2021-01-05 09:20:46 -06:00
|
|
|
--> $DIR/check-doc-alias-attr-location.rs:20:11
|
2020-08-01 10:37:30 -05:00
|
|
|
|
|
|
|
|
LL | #[doc(alias = "assoc")]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2021-06-15 12:01:11 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2020-08-01 10:37:30 -05:00
|
|
|
|