rust/tests/ui/issues/issue-40749.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
135 B
Rust
Raw Normal View History

fn main() {
[0; ..10];
//~^ ERROR mismatched types
//~| expected type `usize`
//~| found struct `RangeTo<{integer}>`
}