Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
async-await
/
async-closures
/
tainted-body.rs
blob: 118c08874699f3cee2d8c725646779a0ad1887e1 [
file
] [
log
] [
blame
]
//@ edition:2021
// Don't ICE in ByMove shim builder when MIR body is tainted by writeback errors
fn
main
()
{
let
_
=
async
||
{
used_fn
();
//~^ ERROR cannot find function `used_fn` in this scope
0
};
}