Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rust's exhaustiveness checking is based entirely on enums and never values, so this fails because u8 simply isn't an enum type. error[E0004]: non-exhaustive patterns: `_` not covered --> src/main.rs:39:26 | 39 | let op_bytes = match op_code { | ^^^^^^^ pattern `_` not covered rust-lang/rust#12483
- Loading branch information