]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc-ui/intra-doc/non-path-primitives.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / rustdoc-ui / intra-doc / non-path-primitives.stderr
1 error: unresolved link to `T`
2 --> $DIR/non-path-primitives.rs:12:7
3 |
4 LL | //! [[T]::rotate_left]
5 | ^ no item named `T` in scope
6 |
7 note: the lint level is defined here
8 --> $DIR/non-path-primitives.rs:1:9
9 |
10 LL | #![deny(broken_intra_doc_links)]
11 | ^^^^^^^^^^^^^^^^^^^^^^
12 = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
13
14 error: unresolved link to `Z`
15 --> $DIR/non-path-primitives.rs:14:5
16 |
17 LL | //![Z]([T; N]::map)
18 | ^ no item named `Z` in scope
19 |
20 = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
21
22 error: unresolved link to `Z`
23 --> $DIR/non-path-primitives.rs:17:6
24 |
25 LL | //! [Z][]
26 | ^ no item named `Z` in scope
27 |
28 = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
29
30 error: unresolved link to `Z`
31 --> $DIR/non-path-primitives.rs:19:6
32 |
33 LL | //! [Z]: [T; N]::map
34 | ^ no item named `Z` in scope
35 |
36 = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
37
38 error: unresolved link to `unit::eq`
39 --> $DIR/non-path-primitives.rs:28:6
40 |
41 LL | //! [unit::eq]
42 | ^^^^^^^^ the builtin type `unit` has no associated item named `eq`
43
44 error: unresolved link to `tuple::eq`
45 --> $DIR/non-path-primitives.rs:29:6
46 |
47 LL | //! [tuple::eq]
48 | ^^^^^^^^^ the builtin type `tuple` has no associated item named `eq`
49
50 error: unresolved link to `fn::eq`
51 --> $DIR/non-path-primitives.rs:30:6
52 |
53 LL | //! [fn::eq]
54 | ^^^^^^ the builtin type `fn` has no associated item named `eq`
55
56 error: unresolved link to `never::eq`
57 --> $DIR/non-path-primitives.rs:31:6
58 |
59 LL | //! [never::eq]
60 | ^^^^^^^^^ the builtin type `never` has no associated item named `eq`
61
62 error: unresolved link to `reference::deref`
63 --> $DIR/non-path-primitives.rs:35:6
64 |
65 LL | //! [reference::deref]
66 | ^^^^^^^^^^^^^^^^ the builtin type `reference` has no associated item named `deref`
67
68 error: aborting due to 9 previous errors
69