]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/method-on-tuple-struct.rs
prefer "FIXME" to "TODO".
[rust.git] / src / test / debuginfo / method-on-tuple-struct.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 // ignore-android: FIXME(#10381)
12 // min-lldb-version: 310
13
14 // compile-flags:-g
15
16 // === GDB TESTS ===================================================================================
17
18 // gdb-command:run
19
20 // STACK BY REF
21 // gdb-command:print *self
22 // gdb-check:$1 = {100, -100.5}
23 // gdb-command:print arg1
24 // gdb-check:$2 = -1
25 // gdb-command:print arg2
26 // gdb-check:$3 = -2
27 // gdb-command:continue
28
29 // STACK BY VAL
30 // gdb-command:print self
31 // gdb-check:$4 = {100, -100.5}
32 // gdb-command:print arg1
33 // gdb-check:$5 = -3
34 // gdb-command:print arg2
35 // gdb-check:$6 = -4
36 // gdb-command:continue
37
38 // OWNED BY REF
39 // gdb-command:print *self
40 // gdb-check:$7 = {200, -200.5}
41 // gdb-command:print arg1
42 // gdb-check:$8 = -5
43 // gdb-command:print arg2
44 // gdb-check:$9 = -6
45 // gdb-command:continue
46
47 // OWNED BY VAL
48 // gdb-command:print self
49 // gdb-check:$10 = {200, -200.5}
50 // gdb-command:print arg1
51 // gdb-check:$11 = -7
52 // gdb-command:print arg2
53 // gdb-check:$12 = -8
54 // gdb-command:continue
55
56 // OWNED MOVED
57 // gdb-command:print *self
58 // gdb-check:$13 = {200, -200.5}
59 // gdb-command:print arg1
60 // gdb-check:$14 = -9
61 // gdb-command:print arg2
62 // gdb-check:$15 = -10
63 // gdb-command:continue
64
65
66 // === LLDB TESTS ==================================================================================
67
68 // lldb-command:run
69
70 // STACK BY REF
71 // lldb-command:print *self
72 // lldb-check:[...]$0 = TupleStruct(100, -100.5)
73 // lldb-command:print arg1
74 // lldb-check:[...]$1 = -1
75 // lldb-command:print arg2
76 // lldb-check:[...]$2 = -2
77 // lldb-command:continue
78
79 // STACK BY VAL
80 // lldb-command:print self
81 // lldb-check:[...]$3 = TupleStruct(100, -100.5)
82 // lldb-command:print arg1
83 // lldb-check:[...]$4 = -3
84 // lldb-command:print arg2
85 // lldb-check:[...]$5 = -4
86 // lldb-command:continue
87
88 // OWNED BY REF
89 // lldb-command:print *self
90 // lldb-check:[...]$6 = TupleStruct(200, -200.5)
91 // lldb-command:print arg1
92 // lldb-check:[...]$7 = -5
93 // lldb-command:print arg2
94 // lldb-check:[...]$8 = -6
95 // lldb-command:continue
96
97 // OWNED BY VAL
98 // lldb-command:print self
99 // lldb-check:[...]$9 = TupleStruct(200, -200.5)
100 // lldb-command:print arg1
101 // lldb-check:[...]$10 = -7
102 // lldb-command:print arg2
103 // lldb-check:[...]$11 = -8
104 // lldb-command:continue
105
106 // OWNED MOVED
107 // lldb-command:print *self
108 // lldb-check:[...]$12 = TupleStruct(200, -200.5)
109 // lldb-command:print arg1
110 // lldb-check:[...]$13 = -9
111 // lldb-command:print arg2
112 // lldb-check:[...]$14 = -10
113 // lldb-command:continue
114
115 struct TupleStruct(int, f64);
116
117 impl TupleStruct {
118
119     fn self_by_ref(&self, arg1: int, arg2: int) -> int {
120         zzz(); // #break
121         arg1 + arg2
122     }
123
124     fn self_by_val(self, arg1: int, arg2: int) -> int {
125         zzz(); // #break
126         arg1 + arg2
127     }
128
129     fn self_owned(self: Box<TupleStruct>, arg1: int, arg2: int) -> int {
130         zzz(); // #break
131         arg1 + arg2
132     }
133 }
134
135 fn main() {
136     let stack = TupleStruct(100, -100.5);
137     let _ = stack.self_by_ref(-1, -2);
138     let _ = stack.self_by_val(-3, -4);
139
140     let owned = box TupleStruct(200, -200.5);
141     let _ = owned.self_by_ref(-5, -6);
142     let _ = owned.self_by_val(-7, -8);
143     let _ = owned.self_owned(-9, -10);
144 }
145
146 fn zzz() {()}