mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
15 lines
404 B
Plaintext
15 lines
404 B
Plaintext
error: reached pattern complexity limit
|
|
--> $DIR/complexity_limit.rs:39:5
|
|
|
|
|
LL | / match command {
|
|
LL | | BaseCommand { field01: true, .. } => {}
|
|
LL | | BaseCommand { field02: true, .. } => {}
|
|
LL | | BaseCommand { field03: true, .. } => {}
|
|
... |
|
|
LL | | BaseCommand { field30: false, .. } => {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 1 previous error
|
|
|