blob: ff2bbeba27cbbee95ae3616d1fa723e9ce59b858 [file] [log] [blame]
//@ run-rustfix
fn get_slice() -> &'static [i32] {
&[1, 2, 3, 4]
}
fn main() {
let _sqsum: i32 = get_slice().into_iter().map(|i| i * i).sum(); //~ ERROR [E0599]
}