]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7092.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / ui / issues / issue-7092.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-7092.rs:6:9
3    |
4 LL |     match x {
5    |           - this expression has type `Whatever`
6 LL |         Some(field) =>
7    |         ^^^^^^^^^^^ expected enum `Whatever`, found enum `Option`
8    |
9    = note: expected enum `Whatever`
10               found enum `Option<_>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.