blob: 13da34f3922c2516ef0c8baec99da3c85b849c93 [file] [log] [blame] [edit]
// Regression test for #70934
struct S;
fn foo() {
&([S][0],);
//~^ ERROR cannot move out of type `[S; 1]`
}
fn main() {}