]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-consts/associated-const-array-len.stderr
Rollup merge of #89833 - jkugelman:must-use-rc-downgrade, r=joshtriplett
[rust.git] / src / test / ui / associated-consts / associated-const-array-len.stderr
1 error[E0277]: the trait bound `i32: Foo` is not satisfied
2   --> $DIR/associated-const-array-len.rs:5:16
3    |
4 LL | const X: [i32; <i32 as Foo>::ID] = [0, 1, 2];
5    |                ^^^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `i32`
6    |
7 note: required by `Foo::ID`
8   --> $DIR/associated-const-array-len.rs:2:5
9    |
10 LL |     const ID: usize;
11    |     ^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.