]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-consts/associated-const-array-len.stderr
Rollup merge of #105983 - compiler-errors:issue-105981, r=tmiasko
[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 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0277`.