Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
generator
/
yield-in-initializer.rs
blob: 8ff35d8ddf10fc8e68421eb7429c298af0a2b408 [
file
] [
log
] [
blame
]
// run-pass
#![
feature
(
generators
)]
fn
main
()
{
static
||
{
loop
{
// Test that `opt` is not live across the yield, even when borrowed in a loop
// See https://github.com/rust-lang/rust/issues/52792
let
opt
=
{
yield
;
true
};
&
opt
;
}
};
}