2015-01-20 10:57:10 -08:00
|
|
|
//@ compile-flags:-C debuginfo=1
|
2014-10-09 16:31:03 +02:00
|
|
|
|
2014-04-24 11:35:48 +02:00
|
|
|
// gdb-command:run
|
2014-10-09 16:31:03 +02:00
|
|
|
// lldb-command:run
|
2013-08-15 12:35:08 +02:00
|
|
|
|
|
|
|
// Nothing to do here really, just make sure it compiles. See issue #8513.
|
|
|
|
fn main() {
|
2015-02-01 12:44:15 -05:00
|
|
|
let _ = ||();
|
2015-02-18 09:05:34 -05:00
|
|
|
let _ = (1_usize..3).map(|_| 5);
|
2013-08-15 12:35:08 +02:00
|
|
|
}
|