blob: d5c44efd667eecd24ba1b52bb5e85e42cf8887f7 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0008]: cannot bind by-move into a pattern guard
--> $DIR/E0008.rs:3:14
|
LL | Some(s) if s.len() == 0 => {},
| ^ moves value into pattern guard
error: aborting due to previous error
For more information about this error, try `rustc --explain E0008`.
|