2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-08-08 16:33:06 +00: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.
|
|
|
|
|
2016-10-25 21:32:04 +00:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
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:print ret
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$3 = {__0 = {__0 = 1, __1 = 2.5}, __1 = {__0 = 2.5, __1 = 1}}
|
|
|
|
// gdbr-check:$3 = ((1, 2.5), (2.5, 1))
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print *t0
|
|
|
|
// gdb-check:$4 = 3.5
|
|
|
|
// gdb-command:print *t1
|
|
|
|
// gdb-check:$5 = 4
|
|
|
|
// gdb-command:print ret
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$6 = {__0 = {__0 = 3.5, __1 = 4}, __1 = {__0 = 4, __1 = 3.5}}
|
|
|
|
// gdbr-check:$6 = ((3.5, 4), (4, 3.5))
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print *t0
|
|
|
|
// gdb-check:$7 = 5
|
|
|
|
// gdb-command:print *t1
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$8 = {a = 6, b = 7.5}
|
|
|
|
// gdbr-check:$8 = generic_function::Struct {a: 6, b: 7.5}
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:print ret
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$9 = {__0 = {__0 = 5, __1 = {a = 6, b = 7.5}}, __1 = {__0 = {a = 6, b = 7.5}, __1 = 5}}
|
|
|
|
// gdbr-check:$9 = ((5, generic_function::Struct {a: 6, b: 7.5}), (generic_function::Struct {a: 6, b: 7.5}, 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
|
|
|
|
// 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
|
|
|
|
|
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() {()}
|