rust/tests/ui/generics/param-in-ct-in-ty-param-default.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
465 B
Plaintext
Raw Normal View History

2020-11-17 04:44:21 -06:00
error: generic parameters may not be used in const operations
--> $DIR/param-in-ct-in-ty-param-default.rs:1:44
|
LL | struct Foo<T, U = [u8; std::mem::size_of::<T>()]>(T, U);
2020-11-17 04:44:21 -06:00
| ^ 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