Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
generator
/
generator-with-nll.rs
blob: cee3e6d226c12dc47eaa8e3261b94c9624d491e9 [
file
] [
log
] [
blame
]
#![
feature
(
generators
)]
fn
main
()
{
||
{
// The reference in `_a` is a Legal with NLL since it ends before the yield
let
_a
=
&
mut
true
;
let
b
=
&
mut
true
;
//~^ borrow may still be in use when generator yields
yield
();
println
!(
"{}"
,
b
);
};
}