mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-06 10:26:25 +00:00
12 lines
408 B
Plaintext
12 lines
408 B
Plaintext
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
|
|
|