]> git.proxmox.com Git - rustc.git/blob - tests/ui/did_you_mean/bad-assoc-pat.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / did_you_mean / bad-assoc-pat.stderr
1 error: missing angle brackets in associated item path
2 --> $DIR/bad-assoc-pat.rs:3:9
3 |
4 LL | [u8]::AssocItem => {}
5 | ^^^^^^^^^^^^^^^ help: try: `<[u8]>::AssocItem`
6
7 error: missing angle brackets in associated item path
8 --> $DIR/bad-assoc-pat.rs:6:9
9 |
10 LL | (u8, u8)::AssocItem => {}
11 | ^^^^^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::AssocItem`
12
13 error: missing angle brackets in associated item path
14 --> $DIR/bad-assoc-pat.rs:9:9
15 |
16 LL | _::AssocItem => {}
17 | ^^^^^^^^^^^^ help: try: `<_>::AssocItem`
18
19 error: missing angle brackets in associated item path
20 --> $DIR/bad-assoc-pat.rs:14:10
21 |
22 LL | &(u8,)::AssocItem => {}
23 | ^^^^^^^^^^^^^^^^ help: try: `<(u8,)>::AssocItem`
24
25 error: missing angle brackets in associated item path
26 --> $DIR/bad-assoc-pat.rs:32:9
27 |
28 LL | ty!()::AssocItem => {}
29 | ^^^^^^^^^^^^^^^^ help: try: `<ty!()>::AssocItem`
30
31 error: missing angle brackets in associated item path
32 --> $DIR/bad-assoc-pat.rs:21:19
33 |
34 LL | ($ty: ty) => ($ty::AssocItem)
35 | ^^^^^^^^^^^^^^ help: try: `<$ty>::AssocItem`
36 ...
37 LL | pat!(u8) => {}
38 | -------- in this macro invocation
39 |
40 = note: this error originates in the macro `pat` (in Nightly builds, run with -Z macro-backtrace for more info)
41
42 error[E0599]: no associated item named `AssocItem` found for slice `[u8]` in the current scope
43 --> $DIR/bad-assoc-pat.rs:3:15
44 |
45 LL | [u8]::AssocItem => {}
46 | ^^^^^^^^^ associated item not found in `[u8]`
47
48 error[E0599]: no associated item named `AssocItem` found for tuple `(u8, u8)` in the current scope
49 --> $DIR/bad-assoc-pat.rs:6:19
50 |
51 LL | (u8, u8)::AssocItem => {}
52 | ^^^^^^^^^ associated item not found in `(u8, u8)`
53
54 error[E0599]: no associated item named `AssocItem` found for type `_` in the current scope
55 --> $DIR/bad-assoc-pat.rs:9:12
56 |
57 LL | _::AssocItem => {}
58 | ^^^^^^^^^ associated item not found in `_`
59
60 error[E0599]: no associated item named `AssocItem` found for tuple `(u8,)` in the current scope
61 --> $DIR/bad-assoc-pat.rs:14:17
62 |
63 LL | &(u8,)::AssocItem => {}
64 | ^^^^^^^^^ associated item not found in `(u8,)`
65
66 error[E0599]: no associated item named `AssocItem` found for type `u8` in the current scope
67 --> $DIR/bad-assoc-pat.rs:21:24
68 |
69 LL | ($ty: ty) => ($ty::AssocItem)
70 | ^^^^^^^^^ associated item not found in `u8`
71 ...
72 LL | pat!(u8) => {}
73 | -------- in this macro invocation
74 |
75 = note: this error originates in the macro `pat` (in Nightly builds, run with -Z macro-backtrace for more info)
76
77 error[E0599]: no associated item named `AssocItem` found for type `u8` in the current scope
78 --> $DIR/bad-assoc-pat.rs:32:16
79 |
80 LL | ty!()::AssocItem => {}
81 | ^^^^^^^^^ associated item not found in `u8`
82
83 error: aborting due to 12 previous errors
84
85 For more information about this error, try `rustc --explain E0599`.