2014-10-09 14:31:03 +00:00
|
|
|
// min-lldb-version: 310
|
2013-11-04 06:53:01 +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 *t0
|
|
|
|
// gdb-check:$1 = 1
|
|
|
|
// gdb-command:print *t1
|
|
|
|
// gdb-check:$2 = 2.5
|
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print *t0
|
2020-05-16 20:56:51 +00:00
|
|
|
// gdb-check:$3 = 3.5
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:print *t1
|
2020-05-16 20:56:51 +00:00
|
|
|
// gdb-check:$4 = 4
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print *t0
|
2020-05-16 20:56:51 +00:00
|
|
|
// gdb-check:$5 = 5
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:print *t1
|
2020-05-16 20:56:51 +00:00
|
|
|
// gdbg-check:$6 = {a = 6, b = 7.5}
|
|
|
|
// gdbr-check:$6 = generic_function::Struct {a: 6, b: 7.5}
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:continue
|
2013-08-13 10:52:39 +00:00
|
|
|
|
2014-07-09 12:46:09 +00:00
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
|
|
|
// lldb-command:print *t0
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$0 = 1
|
|
|
|
// lldbr-check:(i32) *t0 = 1
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:print *t1
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$1 = 2.5
|
|
|
|
// lldbr-check:(f64) *t1 = 2.5
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print *t0
|
2020-05-16 20:56:51 +00:00
|
|
|
// lldbg-check:[...]$2 = 3.5
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbr-check:(f64) *t0 = 3.5
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:print *t1
|
2020-05-16 20:56:51 +00:00
|
|
|
// lldbg-check:[...]$3 = 4
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbr-check:(u16) *t1 = 4
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print *t0
|
2020-05-16 20:56:51 +00:00
|
|
|
// lldbg-check:[...]$4 = 5
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbr-check:(i32) *t0 = 5
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:print *t1
|
2019-05-14 12:50:58 +00:00
|
|
|
// lldbg-check:[...]$5 = { a = 6 b = 7.5 }
|
|
|
|
// lldbr-check:(generic_function::Struct) *t1 = { a = 6 b = 7.5 }
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
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]
|
2014-07-09 12:46:09 +00:00
|
|
|
|
2014-12-31 04:32:49 +00:00
|
|
|
#[derive(Clone)]
|
2013-08-13 10:52:39 +00:00
|
|
|
struct Struct {
|
2015-03-26 00:06:52 +00:00
|
|
|
a: isize,
|
2013-09-26 06:26:09 +00:00
|
|
|
b: f64
|
2013-08-13 10:52:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 16:33:06 +00:00
|
|
|
fn dup_tup<T0: Clone, T1: Clone>(t0: &T0, t1: &T1) -> ((T0, T1), (T1, T0)) {
|
|
|
|
let ret = ((t0.clone(), t1.clone()), (t1.clone(), t0.clone()));
|
2014-07-09 12:46:09 +00:00
|
|
|
zzz(); // #break
|
2013-08-08 16:33:06 +00:00
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
2015-01-25 21:05:03 +00:00
|
|
|
let _ = dup_tup(&1, &2.5f64);
|
2014-06-25 00:51:02 +00:00
|
|
|
let _ = dup_tup(&3.5f64, &4_u16);
|
2015-01-25 21:05:03 +00:00
|
|
|
let _ = dup_tup(&5, &Struct { a: 6, b: 7.5 });
|
2013-08-08 16:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {()}
|