rust/tests/ui/suggestions/dont-suggest-doc-hidden-variant-for-enum/hidden-child.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
620 B
Plaintext
Raw Normal View History

2021-12-21 16:03:51 -06:00
error[E0308]: mismatched types
--> $DIR/hidden-child.rs:9:26
|
LL | let x: Option<i32> = 1i32;
| ----------- ^^^^ expected `Option<i32>`, found `i32`
2021-12-21 16:03:51 -06:00
| |
| expected due to this
|
= note: expected enum `Option<i32>`
found type `i32`
help: try wrapping the expression in `hidden_child::__private::Some`
|
LL | let x: Option<i32> = hidden_child::__private::Some(1i32);
| ++++++++++++++++++++++++++++++ +
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.