mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
8 lines
203 B
Rust
8 lines
203 B
Rust
fn main() {
|
|
[0; ..10];
|
|
//~^ ERROR mismatched types
|
|
//~| NOTE expected type `usize`
|
|
//~| NOTE found struct `RangeTo<{integer}>`
|
|
//~| NOTE expected `usize`, found `RangeTo<{integer}>
|
|
}
|