summary refs log tree commit diff
path: root/src/test/ui/issues/issue-3680.stderr
blob: 8dc0dfa2356f4cf6606d8b7d762164b24c615fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/issue-3680.rs:3:9
   |
LL |         Err(_) => ()
   |         ^^^^^^ expected enum `Option`, found enum `Result`
   |
   = note: expected enum `Option<_>`
              found enum `Result<_, _>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.