2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-08-08 11:33:06 -05:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-02-07 13:08:32 -06:00
|
|
|
// ignore-android: FIXME(#10381)
|
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:print ret
|
|
|
|
// gdb-check:$3 = {{1, 2.5}, {2.5, 1}}
|
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print *t0
|
|
|
|
// gdb-check:$4 = 3.5
|
|
|
|
// gdb-command:print *t1
|
|
|
|
// gdb-check:$5 = 4
|
|
|
|
// gdb-command:print ret
|
|
|
|
// gdb-check:$6 = {{3.5, 4}, {4, 3.5}}
|
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print *t0
|
|
|
|
// gdb-check:$7 = 5
|
|
|
|
// gdb-command:print *t1
|
|
|
|
// gdb-check:$8 = {a = 6, b = 7.5}
|
|
|
|
// gdb-command:print ret
|
|
|
|
// gdb-check:$9 = {{5, {a = 6, b = 7.5}}, {{a = 6, b = 7.5}, 5}}
|
|
|
|
// 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
|
|
|
|
// lldb-check:[...]$0 = 1
|
|
|
|
// lldb-command:print *t1
|
|
|
|
// lldb-check:[...]$1 = 2.5
|
|
|
|
// lldb-command:print ret
|
|
|
|
// lldb-check:[...]$2 = ((1, 2.5), (2.5, 1))
|
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print *t0
|
|
|
|
// lldb-check:[...]$3 = 3.5
|
|
|
|
// lldb-command:print *t1
|
|
|
|
// lldb-check:[...]$4 = 4
|
|
|
|
// lldb-command:print ret
|
|
|
|
// lldb-check:[...]$5 = ((3.5, 4), (4, 3.5))
|
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print *t0
|
|
|
|
// lldb-check:[...]$6 = 5
|
|
|
|
// lldb-command:print *t1
|
|
|
|
// lldb-check:[...]$7 = Struct { a: 6, b: 7.5 }
|
|
|
|
// lldb-command:print ret
|
|
|
|
// lldb-check:[...]$8 = ((5, Struct { a: 6, b: 7.5 }), (Struct { a: 6, b: 7.5 }, 5))
|
|
|
|
// lldb-command:continue
|
|
|
|
|
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 {
|
|
|
|
a: int,
|
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() {
|
|
|
|
|
2014-06-24 19:51:02 -05:00
|
|
|
let _ = dup_tup(&1i, &2.5f64);
|
|
|
|
let _ = dup_tup(&3.5f64, &4_u16);
|
|
|
|
let _ = dup_tup(&5i, &Struct { a: 6, b: 7.5 });
|
2013-08-08 11:33:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {()}
|