2018-07-15 16:11:54 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-40749.rs:2:9
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | [0; ..10];
|
2023-01-02 20:00:33 -06:00
|
|
|
| ^^^^ expected `usize`, found `RangeTo<{integer}>`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
= note: expected type `usize`
|
2020-09-02 02:40:56 -05:00
|
|
|
found struct `RangeTo<{integer}>`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|