diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2022-07-07 15:01:43 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2022-08-12 10:53:07 +0200 |
| commit | 063ebfa5707015f895fc50c3a1dd70ab6867bc9b (patch) | |
| tree | 1009c9ff1c236c70143b84a37a244529d7b01a87 /src/test/debuginfo/generator-objects.rs | |
| parent | 622da5d834e862112e860db1fc0404bd8604f578 (diff) | |
| download | rust-063ebfa5707015f895fc50c3a1dd70ab6867bc9b.tar.gz rust-063ebfa5707015f895fc50c3a1dd70ab6867bc9b.zip | |
Use enum2<_> instead of enum<_> for Cpp-like debuginfo enum type names.
And add more comments about niche tag enum encoding.
Diffstat (limited to 'src/test/debuginfo/generator-objects.rs')
| -rw-r--r-- | src/test/debuginfo/generator-objects.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/debuginfo/generator-objects.rs b/src/test/debuginfo/generator-objects.rs index 95b0819cc38..11c4ae2f659 100644 --- a/src/test/debuginfo/generator-objects.rs +++ b/src/test/debuginfo/generator-objects.rs @@ -41,26 +41,26 @@ // cdb-command: g // cdb-command: dx b -// cdb-check: b : Unresumed [Type: enum$<generator_objects::main::generator_env$0>] +// cdb-check: b : Unresumed [Type: enum2$<generator_objects::main::generator_env$0>] // cdb-check: [+0x[...]] _ref__a : 0x[...] : 5 [Type: int *] // cdb-command: g // cdb-command: dx b -// cdb-check: b : Suspend0 [Type: enum$<generator_objects::main::generator_env$0>] +// cdb-check: b : Suspend0 [Type: enum2$<generator_objects::main::generator_env$0>] // cdb-check: [+0x[...]] c : 6 [Type: int] // cdb-check: [+0x[...]] d : 7 [Type: int] // cdb-check: [+0x[...]] _ref__a : 0x[...] : 5 [Type: int *] // cdb-command: g // cdb-command: dx b -// cdb-check: b : Suspend1 [Type: enum$<generator_objects::main::generator_env$0>] +// cdb-check: b : Suspend1 [Type: enum2$<generator_objects::main::generator_env$0>] // cdb-check: [+0x[...]] c : 7 [Type: int] // cdb-check: [+0x[...]] d : 8 [Type: int] // cdb-check: [+0x[...]] _ref__a : 0x[...] : 6 [Type: int *] // cdb-command: g // cdb-command: dx b -// cdb-check: b : Returned [Type: enum$<generator_objects::main::generator_env$0>] +// cdb-check: b : Returned [Type: enum2$<generator_objects::main::generator_env$0>] // cdb-check: [+0x[...]] _ref__a : 0x[...] : 6 [Type: int *] #![feature(omit_gdb_pretty_printer_section, generators, generator_trait)] |
