Closed
Description
The current output is:
Compiling playground v0.0.1 (/playground)
error[[E0004]](https://doc.rust-lang.org/stable/error-index.html#E0004): non-exhaustive patterns: `Q` not covered
--> src/main.rs:8:11
|
8 | match S::O {
| ^^^^ pattern `Q` not covered
|
note: `S` defined here
--> src/main.rs:4:5
|
1 | enum S {
| -
...
4 | Q,
| ^ not covered
= note: the matched value is of type `S`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
15~ S::P => {}
16+ /*
17+ * stuff, stuff,
18+ * siherfhhsf
19+ * syrrehhgsdiiey
20+ */
21+ Q => todo!()
|
Ideally the output should look like:
<proposed output>