diff options
| author | Tyler Mandry <tmandry@gmail.com> | 2019-09-18 10:58:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-18 10:58:07 -0700 |
| commit | 0fd7a2db3dbde8950f8c59f44b24f41cb170c808 (patch) | |
| tree | 593e8e8b560454e4268d3d5ac9d1407b183ec1a7 | |
| parent | 68096ccb3f37dcdd0c454ced5496dda78589aae9 (diff) | |
| parent | 445af68c23098596d70b7f9f74b37fcb43146cf5 (diff) | |
| download | rust-0fd7a2db3dbde8950f8c59f44b24f41cb170c808.tar.gz rust-0fd7a2db3dbde8950f8c59f44b24f41cb170c808.zip | |
Rollup merge of #64578 - max-sixty:22656-lldb-8, r=alexcrichton
Fix issue22656 with LLDB 8 Closes https://github.com/rust-lang/rust/issues/64074
| -rw-r--r-- | src/test/debuginfo/issue-22656.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/debuginfo/issue-22656.rs b/src/test/debuginfo/issue-22656.rs index 86d31909a0b..e4634d96a6f 100644 --- a/src/test/debuginfo/issue-22656.rs +++ b/src/test/debuginfo/issue-22656.rs @@ -15,7 +15,7 @@ // lldbg-check:[...]$0 = vec![1, 2, 3] // lldbr-check:(alloc::vec::Vec<i32>) v = vec![1, 2, 3] // lldb-command:print zs -// lldbg-check:[...]$1 = StructWithZeroSizedField { x: ZeroSizedStruct, y: 123, z: ZeroSizedStruct, w: 456 } +// lldbg-check:[...]$1 = StructWithZeroSizedField { x: ZeroSizedStruct[...], y: 123, z: ZeroSizedStruct[...], w: 456 } // lldbr-check:(issue_22656::StructWithZeroSizedField) zs = StructWithZeroSizedField { x: ZeroSizedStruct { }, y: 123, z: ZeroSizedStruct { }, w: 456 } // lldbr-command:continue |
