summaryrefslogtreecommitdiffstats
path: root/tests/ui/generics/param-in-ct-in-ty-param-default.stderr
blob: ab09ebcae71973ca7840d47c3b86079126ff7119 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
   |                                            ^ 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