DEBSOURCES
Skip Quicknav
sources / rustc / 1.89.0%2Bdfsg1-1 / 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() {}