2024-07-13 18:32:10 +02:00
|
|
|
error[E0158]: constant pattern depends on a generic parameter
|
2020-09-23 08:39:19 +10:00
|
|
|
--> $DIR/issue-73976-polymorphic.rs:20:37
|
2020-07-21 02:28:51 +01:00
|
|
|
|
|
|
|
|
LL | matches!(GetTypeId::<T>::VALUE, GetTypeId::<T>::VALUE)
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2024-07-13 18:32:10 +02:00
|
|
|
error[E0158]: constant pattern depends on a generic parameter
|
2023-02-27 17:43:39 +00:00
|
|
|
--> $DIR/issue-73976-polymorphic.rs:31:42
|
2020-07-21 02:28:51 +01:00
|
|
|
|
|
|
|
|
LL | matches!(GetTypeNameLen::<T>::VALUE, GetTypeNameLen::<T>::VALUE)
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-02-27 17:43:39 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2020-07-21 02:28:51 +01:00
|
|
|
|
2024-07-13 18:32:10 +02:00
|
|
|
For more information about this error, try `rustc --explain E0158`.
|