rust/tests/ui/consts/const-eval/size-of-t.stderr

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

12 lines
408 B
Plaintext
Raw Normal View History

error: generic parameters may not be used in const operations
--> $DIR/size-of-t.rs:7:30
|
LL | let _arr: [u8; size_of::<T>()];
| ^ cannot perform const operation using `T`
|
= note: type parameters may not be used in const expressions
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
error: aborting due to previous error