summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/const_params_have_right_type.stderr
blob: fdedd3bf5fbff65f8a1222dbe4a1fce8cc558825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0053]: type `Foo` has an incompatible generic parameter for trait `Trait`
  --> $DIR/const_params_have_right_type.rs:6:14
   |
LL | trait Trait {
   |       -----
LL |     type Foo<const N: u8>;
   |              ----------- expected const parameter of type `u8`
...
LL | impl Trait for () {
   | -----------------
LL |     type Foo<const N: u64> = u32;
   |              ^^^^^^^^^^^^ found const parameter of type `u64`

error: aborting due to previous error

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