]> git.proxmox.com Git - rustc.git/blob - tests/ui/associated-consts/associated-const-array-len.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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`.