]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/by-value-self-argument-in-trait-impl.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / by-value-self-argument-in-trait-impl.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // min-lldb-version: 310
12
13 // compile-flags:-g
14
15 // === GDB TESTS ===================================================================================
16
17 // gdb-command:run
18
19 // gdb-command:print self
20 // gdb-check:$1 = 1111
21 // gdb-command:continue
22
23 // gdb-command:print self
24 // gdb-check:$2 = {x = 2222, y = 3333}
25 // gdb-command:continue
26
27 // gdb-command:print self
28 // gdb-check:$3 = {__0 = 4444.5, __1 = 5555, __2 = 6666, __3 = 7777.5}
29 // gdb-command:continue
30
31
32 // === LLDB TESTS ==================================================================================
33
34 // lldb-command:run
35
36 // lldb-command:print self
37 // lldb-check:[...]$0 = 1111
38 // lldb-command:continue
39
40 // lldb-command:print self
41 // lldb-check:[...]$1 = Struct { x: 2222, y: 3333 }
42 // lldb-command:continue
43
44 // lldb-command:print self
45 // lldb-check:[...]$2 = (4444.5, 5555, 6666, 7777.5)
46 // lldb-command:continue
47
48 #![feature(omit_gdb_pretty_printer_section)]
49 #![omit_gdb_pretty_printer_section]
50
51 trait Trait {
52     fn method(self) -> Self;
53 }
54
55 impl Trait for isize {
56     fn method(self) -> isize {
57         zzz(); // #break
58         self
59     }
60 }
61
62 struct Struct {
63     x: usize,
64     y: usize,
65 }
66
67 impl Trait for Struct {
68     fn method(self) -> Struct {
69         zzz(); // #break
70         self
71     }
72 }
73
74 impl Trait for (f64, isize, isize, f64) {
75     fn method(self) -> (f64, isize, isize, f64) {
76         zzz(); // #break
77         self
78     }
79 }
80
81 fn main() {
82     let _ = (1111 as isize).method();
83     let _ = Struct { x: 2222, y: 3333 }.method();
84     let _ = (4444.5, 5555, 6666, 7777.5).method();
85 }
86
87 fn zzz() { () }