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

12 lines
482 B
Plaintext
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(const_generics)]` and `#![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