mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
243 B
Rust
13 lines
243 B
Rust
// 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);
|
|
}
|