debuginfo: Formatting cleanup.
This commit is contained in:
parent
4fb471ab78
commit
42dbae7f2a
@ -111,20 +111,15 @@ fn main() {
|
||||
};
|
||||
|
||||
let bag = Bag { x: Simple { x: 22 } };
|
||||
let bag_in_bag = BagInBag
|
||||
{
|
||||
x: Bag
|
||||
{
|
||||
let bag_in_bag = BagInBag {
|
||||
x: Bag {
|
||||
x: Simple { x: 23 }
|
||||
}
|
||||
};
|
||||
|
||||
let tjo = ThatsJustOverkill
|
||||
{
|
||||
x: BagInBag
|
||||
{
|
||||
x: Bag
|
||||
{
|
||||
let tjo = ThatsJustOverkill {
|
||||
x: BagInBag {
|
||||
x: Bag {
|
||||
x: Simple { x: 24 }
|
||||
}
|
||||
}
|
||||
@ -132,16 +127,13 @@ fn main() {
|
||||
|
||||
let tree = Tree {
|
||||
x: Simple { x: 25 },
|
||||
y: InternalPaddingParent
|
||||
{
|
||||
y: InternalPaddingParent {
|
||||
x: InternalPadding { x: 26, y: 27 },
|
||||
y: InternalPadding { x: 28, y: 29 },
|
||||
z: InternalPadding { x: 30, y: 31 }
|
||||
},
|
||||
z: BagInBag
|
||||
{
|
||||
x: Bag
|
||||
{
|
||||
z: BagInBag {
|
||||
x: Bag {
|
||||
x: Simple { x: 32 }
|
||||
}
|
||||
}
|
||||
|
@ -37,14 +37,12 @@ impl Drop for WithDestructor {
|
||||
fn finalize(&self) {}
|
||||
}
|
||||
|
||||
struct NoDestructorGuarded
|
||||
{
|
||||
struct NoDestructorGuarded {
|
||||
a: NoDestructor,
|
||||
guard: i64
|
||||
}
|
||||
|
||||
struct WithDestructorGuarded
|
||||
{
|
||||
struct WithDestructorGuarded {
|
||||
a: WithDestructor,
|
||||
guard: i64
|
||||
}
|
||||
|
@ -19,12 +19,12 @@
|
||||
// debugger:print y
|
||||
// check:$2 = true
|
||||
|
||||
// debugger:run
|
||||
// debugger:continue
|
||||
// debugger:finish
|
||||
// debugger:print x
|
||||
// check:$3 = 10
|
||||
|
||||
// debugger:run
|
||||
// debugger:continue
|
||||
// debugger:finish
|
||||
// debugger:print x
|
||||
// check:$4 = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user