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

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

17 lines
432 B
Rust
Raw Normal View History

fn main() {
let tup = (0, 1, 2);
// the case where we show a suggestion
let _ = tup[0];
2017-06-09 17:05:14 +00:00
//~^ ERROR cannot index into a value of type
// the case where we show just a general hint
let i = 0_usize;
let _ = tup[i];
2017-06-09 17:05:14 +00:00
//~^ ERROR cannot index into a value of type
2023-04-08 21:32:36 +00:00
// the case where the index is out of bounds
let tup = (10,);
let _ = tup[3];
//~^ ERROR cannot index into a value of type
}