]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/suggest-full-enum-variant-for-local-module.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / suggest-full-enum-variant-for-local-module.stderr
1 error[E0308]: mismatched types
2   --> $DIR/suggest-full-enum-variant-for-local-module.rs:9:28
3    |
4 LL |     let _: option::O<()> = ();
5    |            -------------   ^^ expected enum `O`, found `()`
6    |            |
7    |            expected due to this
8    |
9    = note:   expected enum `O<()>`
10            found unit type `()`
11 help: try wrapping the expression in `option::O::Some`
12    |
13 LL |     let _: option::O<()> = option::O::Some(());
14    |                            ++++++++++++++++  +
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0308`.