@@ -23,36 +23,28 @@ LL | &(u8,)::AssocItem => {}
2323 | ^^^^^^^^^^^^^^^^ help: try: `<(u8,)>::AssocItem`
2424
2525error[E0599]: no associated item named `AssocItem` found for type `[u8]` in the current scope
26- --> $DIR/bad-assoc-pat.rs:13:15
26+ --> $DIR/bad-assoc-pat.rs:13:9
2727 |
2828LL | [u8]::AssocItem => {}
29- | ------^^^^^^^^^
30- | |
31- | associated item not found in `[u8]`
29+ | ^^^^^^^^^^^^^^^ associated item not found in `[u8]`
3230
3331error[E0599]: no associated item named `AssocItem` found for type `(u8, u8)` in the current scope
34- --> $DIR/bad-assoc-pat.rs:16:19
32+ --> $DIR/bad-assoc-pat.rs:16:9
3533 |
3634LL | (u8, u8)::AssocItem => {}
37- | ----------^^^^^^^^^
38- | |
39- | associated item not found in `(u8, u8)`
35+ | ^^^^^^^^^^^^^^^^^^^ associated item not found in `(u8, u8)`
4036
4137error[E0599]: no associated item named `AssocItem` found for type `_` in the current scope
42- --> $DIR/bad-assoc-pat.rs:19:12
38+ --> $DIR/bad-assoc-pat.rs:19:9
4339 |
4440LL | _::AssocItem => {}
45- | ---^^^^^^^^^
46- | |
47- | associated item not found in `_`
41+ | ^^^^^^^^^^^^ associated item not found in `_`
4842
4943error[E0599]: no associated item named `AssocItem` found for type `(u8,)` in the current scope
50- --> $DIR/bad-assoc-pat.rs:24:17
44+ --> $DIR/bad-assoc-pat.rs:24:10
5145 |
5246LL | &(u8,)::AssocItem => {}
53- | -------^^^^^^^^^
54- | |
55- | associated item not found in `(u8,)`
47+ | ^^^^^^^^^^^^^^^^ associated item not found in `(u8,)`
5648
5749error: aborting due to 8 previous errors
5850
0 commit comments