diff options
| author | Ben Kimock <kimockb@gmail.com> | 2024-08-18 17:41:01 -0400 |
|---|---|---|
| committer | Ben Kimock <kimockb@gmail.com> | 2024-08-18 17:41:01 -0400 |
| commit | b2dae987f8d0118be944434f0504f5fefd8737c4 (patch) | |
| tree | 8ace9c79c287f98e738ef627cda48d3d5e3a1bc1 /tests/debuginfo/method-on-generic-struct.rs | |
| parent | 22ed23d680fbb50c90992b03e50968e7bce6f373 (diff) | |
| download | rust-b2dae987f8d0118be944434f0504f5fefd8737c4.tar.gz rust-b2dae987f8d0118be944434f0504f5fefd8737c4.zip | |
Fixup tests
Diffstat (limited to 'tests/debuginfo/method-on-generic-struct.rs')
| -rw-r--r-- | tests/debuginfo/method-on-generic-struct.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/debuginfo/method-on-generic-struct.rs b/tests/debuginfo/method-on-generic-struct.rs index 23617d46e83..1e6c9d66178 100644 --- a/tests/debuginfo/method-on-generic-struct.rs +++ b/tests/debuginfo/method-on-generic-struct.rs @@ -56,7 +56,7 @@ // STACK BY REF // lldb-command:v *self -// lldb-check:[...] Struct<(u32, i32)> { x: (8888, -8888) } +// lldb-check:[...]Struct<(u32, i32)>) *self = { x = { 0 = 8888 1 = -8888 } } // lldb-command:v arg1 // lldb-check:[...] -1 // lldb-command:v arg2 @@ -65,7 +65,7 @@ // STACK BY VAL // lldb-command:v self -// lldb-check:[...] Struct<(u32, i32)> { x: (8888, -8888) } +// lldb-check:[...]Struct<(u32, i32)>) self = { x = { 0 = 8888 1 = -8888 } } // lldb-command:v arg1 // lldb-check:[...] -3 // lldb-command:v arg2 @@ -74,7 +74,7 @@ // OWNED BY REF // lldb-command:v *self -// lldb-check:[...] Struct<f64> { x: 1234.5 } +// lldb-check:[...]Struct<double>) *self = { x = 1234.5 } // lldb-command:v arg1 // lldb-check:[...] -5 // lldb-command:v arg2 @@ -83,7 +83,7 @@ // OWNED BY VAL // lldb-command:v self -// lldb-check:[...] Struct<f64> { x: 1234.5 } +// lldb-check:[...]Struct<double>) self = { x = 1234.5 } // lldb-command:v arg1 // lldb-check:[...] -7 // lldb-command:v arg2 @@ -92,7 +92,7 @@ // OWNED MOVED // lldb-command:v *self -// lldb-check:[...] Struct<f64> { x: 1234.5 } +// lldb-check:[...]Struct<double>) *self = { x = 1234.5 } // lldb-command:v arg1 // lldb-check:[...] -9 // lldb-command:v arg2 |
