Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
async-await
/
async-closures
/
move-out-of-ref.rs
blob: 34389d2d00a2c9783d8aa57f8bde82857c71b983 [
file
] [
log
] [
blame
]
//@ compile-flags: -Zvalidate-mir
//@ edition: 2021
// NOT copy.
struct
Ty
;
fn
hello
(
x
:
&
Ty
)
{
let
c
=
async
||
{
*
x
;
//~^ ERROR cannot move out of `*x` which is behind a shared reference
};
}
fn
main
()
{}