summary refs log tree commit diff
path: root/src/test/ui/rustdoc/check-doc-alias-attr-location.stderr
blob: 2b25882be21f15689cb75975a3e4e777c5a6ff40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 {
   |            ^^^^^^^^^^^^^^^^^^^^^

error: `#[doc(alias = "...")]` isn't allowed on extern block
  --> $DIR/check-doc-alias-attr-location.rs:9:7
   |
LL | #[doc(alias = "foo")]
   |       ^^^^^^^^^^^^^

error: `#[doc(alias = "...")]` isn't allowed on implementation block
  --> $DIR/check-doc-alias-attr-location.rs:12:7
   |
LL | #[doc(alias = "bar")]
   |       ^^^^^^^^^^^^^

error: `#[doc(alias = "...")]` isn't allowed on implementation block
  --> $DIR/check-doc-alias-attr-location.rs:18:7
   |
LL | #[doc(alias = "foobar")]
   |       ^^^^^^^^^^^^^^^^

error: `#[doc(alias = "...")]` isn't allowed on type alias in implementation block
  --> $DIR/check-doc-alias-attr-location.rs:20:11
   |
LL |     #[doc(alias = "assoc")]
   |           ^^^^^^^^^^^^^^^

error: aborting due to 5 previous errors