]>
Commit | Line | Data |
---|---|---|
2b03887a | 1 | error[E0080]: evaluation of `PrintName::<i32>::VOID` failed |
17df50a5 XL |
2 | --> $DIR/erroneous-const2.rs:6:22 |
3 | | | |
4 | LL | const VOID: () = [()][2]; | |
5 | | ^^^^^^^ index out of bounds: the length is 1 but the index is 2 | |
17df50a5 | 6 | |
487cf647 | 7 | note: erroneous constant used |
2b03887a | 8 | --> $DIR/erroneous-const2.rs:13:17 |
17df50a5 XL |
9 | | |
10 | LL | let _ = PrintName::<i32>::VOID; | |
487cf647 | 11 | | ^^^^^^^^^^^^^^^^^^^^^^ |
17df50a5 | 12 | |
487cf647 | 13 | error: aborting due to previous error |
17df50a5 XL |
14 | |
15 | For more information about this error, try `rustc --explain E0080`. |