Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct NonCopy;
fn main() {
let array = [NonCopy; 1];
let _value = array[0]; //~ ERROR [E0508]
}