summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/suggest-dereferencing-index.fixed
blob: dd4ae4eb14c3051c3911be0e5ee80a8721c1ceee (plain)
1
2
3
4
5
6
7
// run-rustfix
#![allow(unused_variables)]

fn main() {
    let i: &usize = &1;
    let one_item_please: i32 = [1, 2, 3][*i]; //~ ERROR the type `[{integer}]` cannot be indexed by `&usize`
}