rust/src/test/ui/issues/issue-27842.rs

12 lines
292 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 12:05:14 -05: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 12:05:14 -05:00
//~^ ERROR cannot index into a value of type
}