summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0005.stderr
blob: 2a38aae0873ad94dfc8bcaa9a7fe286b21310dc8 (plain)
1
2
3
4
5
6
7
8
9
error[E0005]: refutable pattern in local binding: `None` not covered
  --> $DIR/E0005.rs:3:9
   |
LL |     let Some(y) = x; //~ ERROR E0005
   |         ^^^^^^^ pattern `None` not covered

error: aborting due to previous error

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