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>
21 lines
641 B
Plaintext
21 lines
641 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/const-in-struct-pat.rs:8:17
|
|
|
|
|
LL | struct foo;
|
|
| ---------- unit struct defined here
|
|
...
|
|
LL | let Thing { foo } = t;
|
|
| ^^^ - this expression has type `Thing`
|
|
| |
|
|
| expected `String`, found `foo`
|
|
| `foo` is interpreted as a unit struct, not a new binding
|
|
|
|
|
help: bind the struct field to a different name instead
|
|
|
|
|
LL | let Thing { foo: other_foo } = t;
|
|
| +++++++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|