]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-7092.stderr
New upstream version 1.41.1+dfsg1
[rustc.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 match expression has type `Whatever`
6 LL | Some(field) =>
7 | ^^^^^^^^^^^ expected enum `Whatever`, found enum `std::option::Option`
8 |
9 = note: expected enum `Whatever`
10 found enum `std::option::Option<_>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.