os-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
380 B
Text
Raw Normal View History

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