rust/tests/ui/const-generics/issues/issue-80062.stderr
2023-01-11 09:32:08 +00:00

12 lines
396 B
Plaintext

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
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
error: aborting due to previous error