2022-04-02 11:57:04 -05:00
|
|
|
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
|
2023-11-30 13:59:51 -06:00
|
|
|
= help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2022-04-02 11:57:04 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-02 11:57:04 -05:00
|
|
|
|