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.

12 lines
448 B
Text
Raw Normal View History

2020-11-17 11:44:21 +01:00
error: generic parameters may not be used in const operations
--> $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
|
2020-11-17 11:44:21 +01:00
= note: type parameters may not be used in const expressions
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
2020-08-06 10:00:08 +02:00
2020-11-17 11:44:21 +01:00
error: aborting due to previous error
2020-08-06 10:00:08 +02:00