2018-01-21 16:44:41 +08:00
|
|
|
error[E0005]: refutable pattern in local binding: `Err(_)` not covered
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/feature-gate-exhaustive-patterns.rs:7:9
|
2018-01-21 16:44:41 +08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let Ok(_x) = foo();
|
2018-01-21 16:44:41 +08:00
|
|
|
| ^^^^^^ pattern `Err(_)` not covered
|
|
|
|
|
2018-03-01 13:54:20 +08:00
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-14 13:31:02 +08:00
|
|
|
For more information about this error, try `rustc --explain E0005`.
|