Skip to content

Commit 6d1fa89

Browse files
---
yaml --- r: 66359 b: refs/heads/master c: 42dbae7 h: refs/heads/master i: 66357: 18b05dd 66355: 6f34029 66351: fb3eff3 v: v3
1 parent 70a64a1 commit 6d1fa89

File tree

4 files changed

+13
-23
lines changed

4 files changed

+13
-23
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 4fb471ab7828e31c29054b76217c42917c4206c5
2+
refs/heads/master: 42dbae7f2a7dbdc414646e706eeffacdf7d4b338
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 18e3db7392d2d0697b7e27d6d986139960144d85
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9

trunk/src/test/debug-info/struct-in-struct.rs

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -111,37 +111,29 @@ fn main() {
111111
};
112112

113113
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 {
118116
x: Simple { x: 23 }
119117
}
120118
};
121119

122-
let tjo = ThatsJustOverkill
123-
{
124-
x: BagInBag
125-
{
126-
x: Bag
127-
{
120+
let tjo = ThatsJustOverkill {
121+
x: BagInBag {
122+
x: Bag {
128123
x: Simple { x: 24 }
129124
}
130125
}
131126
};
132127

133128
let tree = Tree {
134129
x: Simple { x: 25 },
135-
y: InternalPaddingParent
136-
{
130+
y: InternalPaddingParent {
137131
x: InternalPadding { x: 26, y: 27 },
138132
y: InternalPadding { x: 28, y: 29 },
139133
z: InternalPadding { x: 30, y: 31 }
140134
},
141-
z: BagInBag
142-
{
143-
x: Bag
144-
{
135+
z: BagInBag {
136+
x: Bag {
145137
x: Simple { x: 32 }
146138
}
147139
}

trunk/src/test/debug-info/struct-with-destructor.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,12 @@ impl Drop for WithDestructor {
3737
fn finalize(&self) {}
3838
}
3939

40-
struct NoDestructorGuarded
41-
{
40+
struct NoDestructorGuarded {
4241
a: NoDestructor,
4342
guard: i64
4443
}
4544

46-
struct WithDestructorGuarded
47-
{
45+
struct WithDestructorGuarded {
4846
a: WithDestructor,
4947
guard: i64
5048
}

trunk/src/test/debug-info/variable-scope.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
// debugger:print y
2020
// check:$2 = true
2121

22-
// debugger:run
22+
// debugger:continue
2323
// debugger:finish
2424
// debugger:print x
2525
// check:$3 = 10
2626

27-
// debugger:run
27+
// debugger:continue
2828
// debugger:finish
2929
// debugger:print x
3030
// check:$4 = false

0 commit comments

Comments
 (0)