Sign in
fuchsia
/
third_party
/
rust
/
d2b0555964913073a2680739e8678bab4b7850ed
/
.
/
tests
/
debuginfo
/
lexical-scope-in-parameterless-closure.rs
blob: fa2cd281c8077611379b462644c205a6953102ee [
file
] [
log
] [
blame
]
//@ min-lldb-version: 310
//@ 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
);
}