about summary refs log tree commit diff
path: root/tests/ui/pattern/complexity_limit.stderr
blob: 08d9d40fe462647ca1b5604006427c1145b99de1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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