2024-11-20 03:57:30 +00:00
|
|
|
error[E0158]: constant parameters cannot be referenced in patterns
|
2021-08-27 16:04:57 +00:00
|
|
|
--> $DIR/const-param.rs:5:9
|
2020-11-17 10:44:21 +00:00
|
|
|
|
|
2024-11-20 03:57:30 +00:00
|
|
|
LL | fn check<const N: usize>() {
|
|
|
|
| -------------- constant defined here
|
|
|
|
LL | match 1 {
|
2020-11-17 10:44:21 +00:00
|
|
|
LL | N => {}
|
2024-11-20 03:57:30 +00:00
|
|
|
| ^ can't be used in patterns
|
2020-11-17 10:44:21 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-11-17 10:44:21 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0158`.
|