rust/src/test/ui/did_you_mean/bad-assoc-pat.stderr

52 lines
1.8 KiB
Plaintext
Raw Normal View History

error: missing angle brackets in associated item path
--> $DIR/bad-assoc-pat.rs:13:9
|
2018-02-22 18:42:32 -06:00
LL | [u8]::AssocItem => {}
| ^^^^^^^^^^^^^^^ help: try: `<[u8]>::AssocItem`
error: missing angle brackets in associated item path
--> $DIR/bad-assoc-pat.rs:16:9
|
2018-02-22 18:42:32 -06:00
LL | (u8, u8)::AssocItem => {}
| ^^^^^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::AssocItem`
error: missing angle brackets in associated item path
--> $DIR/bad-assoc-pat.rs:19:9
|
2018-02-22 18:42:32 -06:00
LL | _::AssocItem => {}
| ^^^^^^^^^^^^ help: try: `<_>::AssocItem`
error: missing angle brackets in associated item path
--> $DIR/bad-assoc-pat.rs:24:10
|
2018-02-22 18:42:32 -06:00
LL | &(u8,)::AssocItem => {}
| ^^^^^^^^^^^^^^^^ help: try: `<(u8,)>::AssocItem`
error[E0599]: no associated item named `AssocItem` found for type `[u8]` in the current scope
--> $DIR/bad-assoc-pat.rs:13:9
|
2018-02-22 18:42:32 -06:00
LL | [u8]::AssocItem => {}
| ^^^^^^^^^^^^^^^ associated item not found in `[u8]`
error[E0599]: no associated item named `AssocItem` found for type `(u8, u8)` in the current scope
--> $DIR/bad-assoc-pat.rs:16:9
|
2018-02-22 18:42:32 -06:00
LL | (u8, u8)::AssocItem => {}
| ^^^^^^^^^^^^^^^^^^^ associated item not found in `(u8, u8)`
error[E0599]: no associated item named `AssocItem` found for type `_` in the current scope
--> $DIR/bad-assoc-pat.rs:19:9
|
2018-02-22 18:42:32 -06:00
LL | _::AssocItem => {}
| ^^^^^^^^^^^^ associated item not found in `_`
error[E0599]: no associated item named `AssocItem` found for type `(u8,)` in the current scope
--> $DIR/bad-assoc-pat.rs:24:10
|
2018-02-22 18:42:32 -06:00
LL | &(u8,)::AssocItem => {}
| ^^^^^^^^^^^^^^^^ associated item not found in `(u8,)`
error: aborting due to 8 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0599`.