mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
16 lines
539 B
Plaintext
16 lines
539 B
Plaintext
error[E0158]: constant pattern cannot depend on generic parameters
|
|
--> $DIR/const-match-pat-generic.rs:7:9
|
|
|
|
|
LL | const { V } => {},
|
|
| ^^^^^^^^^^^ `const` depends on a generic parameter
|
|
|
|
error[E0158]: constant pattern cannot depend on generic parameters
|
|
--> $DIR/const-match-pat-generic.rs:19:9
|
|
|
|
|
LL | const { f(V) } => {},
|
|
| ^^^^^^^^^^^^^^ `const` depends on a generic parameter
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0158`.
|