summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.stderr
blob: 55bced29aff10033210f2385879964f4ef651f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0770]: the type of const parameters must not depend on other generic parameters
  --> $DIR/const-param-type-depends-on-type-param-ungated.rs:3:22
   |
LL | struct B<T, const N: T>(PhantomData<[T; N]>);
   |                      ^ the type must not depend on the parameter `T`
   |
   = note: type parameters may not be used in the type of const parameters

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0770`.