rust/tests/ui/enum-discriminant/issue-70453-polymorphic-ctfe.stderr

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

11 lines
378 B
Plaintext
Raw Normal View History

2023-05-05 15:42:51 -05:00
error: generic parameters may not be used in enum discriminant values
2020-11-17 04:44:21 -06:00
--> $DIR/issue-70453-polymorphic-ctfe.rs:9:41
2020-08-06 03:00:08 -05:00
|
LL | Some(T) = core::mem::size_of::<*mut T>(),
2020-11-17 04:44:21 -06:00
| ^ cannot perform const operation using `T`
2020-08-06 03:00:08 -05:00
|
2023-05-05 15:42:51 -05:00
= note: type parameters may not be used in enum discriminant values
2020-08-06 03:00:08 -05:00
2020-11-17 04:44:21 -06:00
error: aborting due to previous error
2020-08-06 03:00:08 -05:00