Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
move-error-in-promoted-2.rs
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
()
{}