2020-12-30 08:59:44 -06:00
|
|
|
error: generic parameters may not be used in const operations
|
|
|
|
--> $DIR/issue-80062.rs:6:23
|
|
|
|
|
|
|
|
|
LL | let _: [u8; sof::<T>()];
|
|
|
|
| ^ cannot perform const operation using `T`
|
|
|
|
|
|
|
|
|
= note: type parameters may not be used in const expressions
|
2021-08-27 11:04:57 -05:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-12-30 08:59:44 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|