2018-01-21 02:44:41 -06:00
|
|
|
error[E0005]: refutable pattern in local binding: `Err(_)` not covered
|
|
|
|
--> $DIR/feature-gate-exhaustive-patterns.rs:16:9
|
|
|
|
|
|
2018-02-28 11:26:51 -06:00
|
|
|
LL | let Ok(_x) = foo(); //~ ERROR refutable pattern in local binding
|
2018-01-21 02:44:41 -06:00
|
|
|
| ^^^^^^ pattern `Err(_)` not covered
|
|
|
|
|
2018-02-28 23:54:20 -06:00
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
If you want more information on this error, try using "rustc --explain E0005"
|