2017-12-16 22:53:11 +00:00
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:3:9
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | [u8]::AssocItem => {}
|
2017-12-16 22:53:11 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `<[u8]>::AssocItem`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:6:9
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | (u8, u8)::AssocItem => {}
|
2017-12-16 22:53:11 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::AssocItem`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:9:9
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | _::AssocItem => {}
|
2017-12-16 22:53:11 +00:00
|
|
|
| ^^^^^^^^^^^^ help: try: `<_>::AssocItem`
|
|
|
|
|
2017-12-18 20:42:58 +00:00
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:14:10
|
2017-12-18 20:42:58 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | &(u8,)::AssocItem => {}
|
2017-12-18 20:42:58 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `<(u8,)>::AssocItem`
|
|
|
|
|
2017-12-16 22:53:11 +00:00
|
|
|
error[E0599]: no associated item named `AssocItem` found for type `[u8]` in the current scope
|
2018-12-07 18:15:36 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:3:15
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | [u8]::AssocItem => {}
|
2018-12-07 18:15:36 +00:00
|
|
|
| ------^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| associated item not found in `[u8]`
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
|
|
error[E0599]: no associated item named `AssocItem` found for type `(u8, u8)` in the current scope
|
2018-12-07 18:15:36 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:6:19
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | (u8, u8)::AssocItem => {}
|
2018-12-07 18:15:36 +00:00
|
|
|
| ----------^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| associated item not found in `(u8, u8)`
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
|
|
error[E0599]: no associated item named `AssocItem` found for type `_` in the current scope
|
2018-12-07 18:15:36 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:9:12
|
2017-12-16 22:53:11 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | _::AssocItem => {}
|
2018-12-07 18:15:36 +00:00
|
|
|
| ---^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| associated item not found in `_`
|
2017-12-16 22:53:11 +00:00
|
|
|
|
2017-12-18 20:42:58 +00:00
|
|
|
error[E0599]: no associated item named `AssocItem` found for type `(u8,)` in the current scope
|
2018-12-07 18:15:36 +00:00
|
|
|
--> $DIR/bad-assoc-pat.rs:14:17
|
2017-12-18 20:42:58 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | &(u8,)::AssocItem => {}
|
2018-12-07 18:15:36 +00:00
|
|
|
| -------^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| associated item not found in `(u8,)`
|
2017-12-18 20:42:58 +00:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2017-12-16 22:53:11 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0599`.
|