summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/move-error-in-promoted-2.rs
blob: 13da34f3922c2516ef0c8baec99da3c85b849c93 (plain)
1
2
3
4
5
6
7
8
9
10
// Regression test for #70934

struct S;

fn foo() {
    &([S][0],);
    //~^ ERROR cannot move out of type `[S; 1]`
}

fn main() {}