about summary refs log tree commit diff
path: root/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.stderr
blob: 3075597895b01a8116eba3b725b2c327a7f6e45e (plain)
1
2
3
4
5
6
7
8
9
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`

error: aborting due to 1 previous error

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