2014-10-09 14:31:03 +00:00
|
|
|
// min-lldb-version: 310
|
2013-12-13 23:45:08 +00:00
|
|
|
|
2014-02-07 03:57:09 +00:00
|
|
|
// compile-flags:-g
|
2014-07-09 12:46:09 +00:00
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:run
|
|
|
|
|
|
|
|
// gdb-command:print constant
|
|
|
|
// gdb-check:$1 = 1
|
|
|
|
// gdb-command:print a_struct
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$2 = {a = -2, b = 3.5, c = 4}
|
|
|
|
// gdbr-check:$2 = var_captured_in_sendable_closure::Struct {a: -2, b: 3.5, c: 4}
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:print *owned
|
|
|
|
// gdb-check:$3 = 5
|
2014-11-27 14:52:16 +00:00
|
|
|
// gdb-command:continue
|
2013-08-23 16:45:02 +00:00
|
|
|
|
2014-11-27 14:52:16 +00:00
|
|
|
// gdb-command:print constant2
|
|
|
|
// gdb-check:$4 = 6
|
|
|
|
// gdb-command:continue
|
2014-07-09 12:46:09 +00:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
|
|
|
// lldb-command:print constant
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$0 = 1
|
|
|
|
// lldbr-check:(isize) constant = 1
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:print a_struct
|
2019-05-14 12:50:58 +00:00
|
|
|
// lldbg-check:[...]$1 = { a = -2 b = 3.5 c = 4 }
|
|
|
|
// lldbr-check:(var_captured_in_sendable_closure::Struct) a_struct = { a = -2 b = 3.5 c = 4 }
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:print *owned
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$2 = 5
|
|
|
|
// lldbr-check:(isize) *owned = 5
|
2014-07-09 12:46:09 +00:00
|
|
|
|
2014-10-27 22:37:07 +00:00
|
|
|
#![allow(unused_variables)]
|
2015-09-19 20:33:47 +00:00
|
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
2014-12-03 22:48:18 +00:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
2013-08-23 16:45:02 +00:00
|
|
|
|
|
|
|
struct Struct {
|
2015-03-26 00:06:52 +00:00
|
|
|
a: isize,
|
2013-09-26 06:26:09 +00:00
|
|
|
b: f64,
|
2015-03-26 00:06:52 +00:00
|
|
|
c: usize
|
2013-08-23 16:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let constant = 1;
|
|
|
|
|
|
|
|
let a_struct = Struct {
|
|
|
|
a: -2,
|
|
|
|
b: 3.5,
|
|
|
|
c: 4
|
|
|
|
};
|
|
|
|
|
2021-08-25 00:39:40 +00:00
|
|
|
let owned: Box<_> = Box::new(5);
|
2013-08-23 16:45:02 +00:00
|
|
|
|
2016-04-16 18:51:26 +00:00
|
|
|
let closure = move || {
|
2014-07-09 12:46:09 +00:00
|
|
|
zzz(); // #break
|
2014-07-07 23:35:15 +00:00
|
|
|
do_something(&constant, &a_struct.a, &*owned);
|
2013-08-23 16:45:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
closure();
|
2014-11-27 14:52:16 +00:00
|
|
|
|
2015-02-18 14:05:34 +00:00
|
|
|
let constant2 = 6_usize;
|
2014-11-27 14:52:16 +00:00
|
|
|
|
|
|
|
// The `self` argument of the following closure should be passed by value
|
2018-05-08 13:10:16 +00:00
|
|
|
// to FnOnce::call_once(self, args), which gets codegened a bit differently
|
2014-11-27 14:52:16 +00:00
|
|
|
// than the regular case. Let's make sure this is supported too.
|
2016-04-16 18:51:26 +00:00
|
|
|
let immedate_env = move || {
|
2014-11-27 14:52:16 +00:00
|
|
|
zzz(); // #break
|
|
|
|
return constant2;
|
|
|
|
};
|
|
|
|
|
|
|
|
immedate_env();
|
2013-08-23 16:45:02 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
fn do_something(_: &isize, _:&isize, _:&isize) {
|
2013-08-23 16:45:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {()}
|