Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
issue-46036.rs
blob: 18af33c1821c0d6c7dfa4ba27422643a8eb4b3ff [
file
] [
log
] [
blame
] [
edit
]
// Issue 46036: [NLL] false edges on infinite loops
// Infinite loops should create false edges to the cleanup block.
struct
Foo
{
x
:
&
'
static
u32
}
fn
foo
()
{
let
a
=
3
;
let
foo
=
Foo
{
x
:
&
a
};
//~ ERROR E0597
loop
{
}
}
fn
main
()
{
}