Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
debuginfo
/
lexical-scope-in-parameterless-closure.rs
blob: dd6da95d388c51c8e29b3c46915f45536108002d [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags:-C debuginfo=1
// gdb-command:run
// lldb-command:run
// Nothing to do here really, just make sure it compiles. See issue #8513.
fn
main
()
{
let
_
=
||();
let
_
=
(
1
_usize
..
3
).
map
(|
_
|
5
);
}