mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
526 B
Plaintext
15 lines
526 B
Plaintext
error: constant pattern depends on a generic parameter
|
|
--> $DIR/issue-73976-polymorphic.rs:20:37
|
|
|
|
|
LL | matches!(GetTypeId::<T>::VALUE, GetTypeId::<T>::VALUE)
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: constant pattern depends on a generic parameter
|
|
--> $DIR/issue-73976-polymorphic.rs:31:42
|
|
|
|
|
LL | matches!(GetTypeNameLen::<T>::VALUE, GetTypeNameLen::<T>::VALUE)
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|