]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const-param-type-depends-on-type-param.stderr
290d53c4e1971402937182324570a920c538bbef
[rust.git] / src / test / ui / const-generics / const-param-type-depends-on-type-param.stderr
1 warning: the feature `const_generics` is incomplete and may cause the compiler to crash
2   --> $DIR/const-param-type-depends-on-type-param.rs:1:12
3    |
4 LL | #![feature(const_generics)]
5    |            ^^^^^^^^^^^^^^
6    |
7    = note: `#[warn(incomplete_features)]` on by default
8
9 error[E0741]: `T` must be annotated with `#[derive(PartialEq, Eq)]` to be used as the type of a const parameter
10   --> $DIR/const-param-type-depends-on-type-param.rs:9:34
11    |
12 LL | pub struct Dependent<T, const X: T>([(); X]);
13    |                                  ^ `T` doesn't derive both `PartialEq` and `Eq`
14
15 error: aborting due to previous error; 1 warning emitted
16
17 For more information about this error, try `rustc --explain E0741`.