blob: 418ac6f612ca5f4ad5f482982ae75acb8a53eee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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: add `#![feature(generic_const_exprs)]` to allow generic const expressions
error: aborting due to 1 previous error
|