DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.85.0%2Bdfsg3-1~deb12u3 / tests / ui / borrowck / move-error-in-promoted-2.rs
12345678910
// Regression test for #70934 struct S; fn foo() { &([S][0],); //~^ ERROR cannot move out of type `[S; 1]` } fn main() {}