File tree Expand file tree Collapse file tree 4 files changed +13
-23
lines changed
trunk/src/test/debug-info Expand file tree Collapse file tree 4 files changed +13
-23
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 4fb471ab7828e31c29054b76217c42917c4206c5
2
+ refs/heads/master: 42dbae7f2a7dbdc414646e706eeffacdf7d4b338
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 18e3db7392d2d0697b7e27d6d986139960144d85
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
Original file line number Diff line number Diff line change @@ -111,37 +111,29 @@ fn main() {
111
111
} ;
112
112
113
113
let bag = Bag { x : Simple { x : 22 } } ;
114
- let bag_in_bag = BagInBag
115
- {
116
- x : Bag
117
- {
114
+ let bag_in_bag = BagInBag {
115
+ x : Bag {
118
116
x : Simple { x : 23 }
119
117
}
120
118
} ;
121
119
122
- let tjo = ThatsJustOverkill
123
- {
124
- x : BagInBag
125
- {
126
- x : Bag
127
- {
120
+ let tjo = ThatsJustOverkill {
121
+ x : BagInBag {
122
+ x : Bag {
128
123
x : Simple { x : 24 }
129
124
}
130
125
}
131
126
} ;
132
127
133
128
let tree = Tree {
134
129
x : Simple { x : 25 } ,
135
- y : InternalPaddingParent
136
- {
130
+ y : InternalPaddingParent {
137
131
x : InternalPadding { x : 26 , y : 27 } ,
138
132
y : InternalPadding { x : 28 , y : 29 } ,
139
133
z : InternalPadding { x : 30 , y : 31 }
140
134
} ,
141
- z : BagInBag
142
- {
143
- x : Bag
144
- {
135
+ z : BagInBag {
136
+ x : Bag {
145
137
x : Simple { x : 32 }
146
138
}
147
139
}
Original file line number Diff line number Diff line change @@ -37,14 +37,12 @@ impl Drop for WithDestructor {
37
37
fn finalize ( & self ) { }
38
38
}
39
39
40
- struct NoDestructorGuarded
41
- {
40
+ struct NoDestructorGuarded {
42
41
a : NoDestructor ,
43
42
guard : i64
44
43
}
45
44
46
- struct WithDestructorGuarded
47
- {
45
+ struct WithDestructorGuarded {
48
46
a : WithDestructor ,
49
47
guard : i64
50
48
}
Original file line number Diff line number Diff line change 19
19
// debugger:print y
20
20
// check:$2 = true
21
21
22
- // debugger:run
22
+ // debugger:continue
23
23
// debugger:finish
24
24
// debugger:print x
25
25
// check:$3 = 10
26
26
27
- // debugger:run
27
+ // debugger:continue
28
28
// debugger:finish
29
29
// debugger:print x
30
30
// check:$4 = false
You can’t perform that action at this time.
0 commit comments