|
1 | 1 | error: doc alias attribute expects a string: #[doc(alias = "a")] |
2 | | - --> $DIR/check-doc-alias-attr.rs:7:7 |
| 2 | + --> $DIR/check-doc-alias-attr.rs:6:7 |
3 | 3 | | |
4 | 4 | LL | #[doc(alias)] |
5 | 5 | | ^^^^^ |
6 | 6 |
|
7 | 7 | error: doc alias attribute expects a string: #[doc(alias = "a")] |
8 | | - --> $DIR/check-doc-alias-attr.rs:8:7 |
| 8 | + --> $DIR/check-doc-alias-attr.rs:7:7 |
9 | 9 | | |
10 | 10 | LL | #[doc(alias = 0)] |
11 | 11 | | ^^^^^^^^^ |
12 | 12 |
|
13 | 13 | error: doc alias attribute expects a string: #[doc(alias = "a")] |
14 | | - --> $DIR/check-doc-alias-attr.rs:9:7 |
| 14 | + --> $DIR/check-doc-alias-attr.rs:8:7 |
15 | 15 | | |
16 | 16 | LL | #[doc(alias("bar"))] |
17 | 17 | | ^^^^^^^^^^^^ |
18 | 18 |
|
19 | 19 | error: '\"' character isn't allowed in `#[doc(alias = "...")]` |
20 | | - --> $DIR/check-doc-alias-attr.rs:10:15 |
| 20 | + --> $DIR/check-doc-alias-attr.rs:9:15 |
21 | 21 | | |
22 | 22 | LL | #[doc(alias = "\"")] |
23 | 23 | | ^^^^ |
24 | 24 |
|
25 | 25 | error: '\n' character isn't allowed in `#[doc(alias = "...")]` |
26 | | - --> $DIR/check-doc-alias-attr.rs:11:15 |
| 26 | + --> $DIR/check-doc-alias-attr.rs:10:15 |
27 | 27 | | |
28 | 28 | LL | #[doc(alias = "\n")] |
29 | 29 | | ^^^^ |
30 | 30 |
|
31 | 31 | error: '\n' character isn't allowed in `#[doc(alias = "...")]` |
32 | | - --> $DIR/check-doc-alias-attr.rs:12:15 |
| 32 | + --> $DIR/check-doc-alias-attr.rs:11:15 |
33 | 33 | | |
34 | 34 | LL | #[doc(alias = " |
35 | 35 | | _______________^ |
36 | 36 | LL | | ")] |
37 | 37 | | |_^ |
38 | 38 |
|
39 | 39 | error: '\t' character isn't allowed in `#[doc(alias = "...")]` |
40 | | - --> $DIR/check-doc-alias-attr.rs:14:15 |
| 40 | + --> $DIR/check-doc-alias-attr.rs:13:15 |
41 | 41 | | |
42 | 42 | LL | #[doc(alias = "\t")] |
43 | 43 | | ^^^^ |
44 | 44 |
|
45 | 45 | error: `#[doc(alias = "...")]` cannot start or end with ' ' |
46 | | - --> $DIR/check-doc-alias-attr.rs:15:15 |
| 46 | + --> $DIR/check-doc-alias-attr.rs:14:15 |
47 | 47 | | |
48 | 48 | LL | #[doc(alias = " hello")] |
49 | 49 | | ^^^^^^^^ |
50 | 50 |
|
51 | 51 | error: `#[doc(alias = "...")]` cannot start or end with ' ' |
52 | | - --> $DIR/check-doc-alias-attr.rs:16:15 |
| 52 | + --> $DIR/check-doc-alias-attr.rs:15:15 |
53 | 53 | | |
54 | 54 | LL | #[doc(alias = "hello ")] |
55 | 55 | | ^^^^^^^^ |
|
0 commit comments