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
|
2024-08-17 21:31:49 +00:00
|
|
|
// gdb-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
|
|
|
|
|
2024-03-15 14:05:57 +00:00
|
|
|
// lldb-command:v *t0
|
2024-08-18 21:00:33 +00:00
|
|
|
// lldb-check:[...] 1
|
2024-03-15 14:05:57 +00:00
|
|
|
// lldb-command:v *t1
|
2024-08-18 21:00:33 +00:00
|
|
|
// lldb-check:[...] 2.5
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
2024-03-15 14:05:57 +00:00
|
|
|
// lldb-command:v *t0
|
2024-08-18 21:00:33 +00:00
|
|
|
// lldb-check:[...] 3.5
|
2024-03-15 14:05:57 +00:00
|
|
|
// lldb-command:v *t1
|
2024-08-18 21:00:33 +00:00
|
|
|
// lldb-check:[...] 4
|
2014-07-09 12:46:09 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
2024-03-15 14:05:57 +00:00
|
|
|
// lldb-command:v *t0
|
2024-08-18 21:00:33 +00:00
|
|
|
// lldb-check:[...] 5
|
2024-03-15 14:05:57 +00:00
|
|
|
// lldb-command:v *t1
|
2024-08-18 21:00:33 +00:00
|
|
|
// lldb-check:[...] { 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() {()}
|