rust/tests/ui/consts/issue-73976-polymorphic.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
526 B
Plaintext
Raw Normal View History

2020-07-30 00:34:16 -05:00
error: constant pattern depends on a generic parameter
--> $DIR/issue-73976-polymorphic.rs:20:37
|
LL | matches!(GetTypeId::<T>::VALUE, GetTypeId::<T>::VALUE)
| ^^^^^^^^^^^^^^^^^^^^^
2020-07-30 00:34:16 -05:00
error: constant pattern depends on a generic parameter
2023-02-27 11:43:39 -06:00
--> $DIR/issue-73976-polymorphic.rs:31:42
|
LL | matches!(GetTypeNameLen::<T>::VALUE, GetTypeNameLen::<T>::VALUE)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2023-02-27 11:43:39 -06:00
error: aborting due to 2 previous errors