mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
22 lines
548 B
Plaintext
22 lines
548 B
Plaintext
error[E0423]: expected value, found struct `Handle`
|
|
--> $DIR/issue-39226.rs:11:17
|
|
|
|
|
LL | struct Handle {}
|
|
| ---------------- `Handle` defined here
|
|
...
|
|
LL | handle: Handle
|
|
| ^^^^^^
|
|
|
|
|
help: use struct literal syntax instead
|
|
|
|
|
LL | handle: Handle {}
|
|
| ~~~~~~~~~
|
|
help: a local variable with a similar name exists
|
|
|
|
|
LL | handle: handle
|
|
| ~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0423`.
|