2022-04-12 18:14:28 +02:00
|
|
|
error: constant pattern depends on a generic parameter
|
2022-04-29 15:27:59 +01:00
|
|
|
--> $DIR/const-match-pat-generic.rs:8:9
|
2021-08-14 18:29:04 +01:00
|
|
|
|
|
2021-12-05 21:38:37 +00:00
|
|
|
LL | const { V } => {},
|
|
|
|
| ^^^^^^^^^^^
|
2021-08-14 18:29:04 +01:00
|
|
|
|
2021-12-05 21:38:37 +00:00
|
|
|
error: constant pattern depends on a generic parameter
|
2023-02-27 17:43:39 +00:00
|
|
|
--> $DIR/const-match-pat-generic.rs:20:9
|
2021-12-05 21:38:37 +00:00
|
|
|
|
|
|
|
|
LL | const { f(V) } => {},
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2023-02-27 17:43:39 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2021-08-14 18:29:04 +01:00
|
|
|
|