Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
borrowck
/
move-error-in-promoted-2.rs
blob: 13da34f3922c2516ef0c8baec99da3c85b849c93 [
file
] [
log
] [
blame
]
// Regression test for #70934
struct
S
;
fn
foo
()
{
&([
S
][
0
],);
//~^ ERROR cannot move out of type `[S; 1]`
}
fn
main
()
{}