rust/tests/ui/consts/issue-50439.stderr

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

19 lines
719 B
Plaintext
Raw Permalink Normal View History

2022-06-29 23:43:29 -05:00
error: constant expression depends on a generic parameter
--> $DIR/issue-50439.rs:25:22
|
LL | let _ = [(); 0 - !!(<Bears<T> as ReflectDrop>::REFLECT_DROP) as usize];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this may fail depending on what value the parameter takes
2023-05-02 12:04:52 -05:00
error: constant expression depends on a generic parameter
--> $DIR/issue-50439.rs:25:17
|
LL | let _ = [(); 0 - !!(<Bears<T> as ReflectDrop>::REFLECT_DROP) as usize];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this may fail depending on what value the parameter takes
error: aborting due to 2 previous errors
2022-06-29 23:43:29 -05:00