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