summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0005.stderr
blob: b321a69805eb9c852941fa096cc7255a8214d0cf (plain)
1
2
3
4
5
6
7
8
9
error[E0005]: refutable pattern in local binding: `None` not covered
  --> $DIR/E0005.rs:13: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`.