mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
459 B
Plaintext
15 lines
459 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/param-mentioned-by-different-field.rs:8:25
|
|
|
|
|
LL | let y: &Foo<[u8]> = &x;
|
|
| ---------- ^^ expected `&Foo<[u8]>`, found `&Foo<[u8; 1]>`
|
|
| |
|
|
| expected due to this
|
|
|
|
|
= note: expected reference `&Foo<[u8]>`
|
|
found reference `&Foo<[u8; 1]>`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|