Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
tests
/
debuginfo
/
lexical-scope-in-parameterless-closure.rs
blob: 225f52f0bfd0616646854c494e34e8dec69e7d9c [
file
] [
log
] [
blame
]
//@ 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
);
}