Skip to content

Commit b6b5745

Browse files
committed
In pretty_print_type(), print async fn futures' paths instead of spans.
This makes `-Zprint-type-sizes`'s output easier to read, because the name of an `async fn` is more immediately recognizable than its span. I also deleted the comment "FIXME(eddyb) should use `def_span`." because it appears to have already been fixed by commit 67727aa.
1 parent 020bbe4 commit b6b5745

File tree

8 files changed

+81
-73
lines changed

8 files changed

+81
-73
lines changed

compiler/rustc_middle/src/ty/print/pretty.rs

+13-5
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
804804
}
805805
ty::Str => p!("str"),
806806
ty::Coroutine(did, args) => {
807-
p!(write("{{"));
807+
p!("{{");
808808
let coroutine_kind = self.tcx().coroutine_kind(did).unwrap();
809809
let should_print_movability = self.should_print_verbose()
810810
|| matches!(coroutine_kind, hir::CoroutineKind::Coroutine(_));
@@ -818,17 +818,25 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
818818

819819
if !self.should_print_verbose() {
820820
p!(write("{}", coroutine_kind));
821-
// FIXME(eddyb) should use `def_span`.
822-
if let Some(did) = did.as_local() {
823-
let span = self.tcx().def_span(did);
821+
if coroutine_kind.is_fn_like() {
822+
// If we are printing an `async fn` coroutine type, then give the path
823+
// of the fn, instead of its span, because that will in most cases be
824+
// more helpful for the reader than just a source location.
825+
//
826+
// This will look like:
827+
// {async fn body of some_fn()}
828+
let did_of_the_fn_item = self.tcx().parent(did);
829+
p!(" of ", print_def_path(did_of_the_fn_item, args), "()");
830+
} else if let Some(local_did) = did.as_local() {
831+
let span = self.tcx().def_span(local_did);
824832
p!(write(
825833
"@{}",
826834
// This may end up in stderr diagnostics but it may also be emitted
827835
// into MIR. Hence we use the remapped path if available
828836
self.tcx().sess.source_map().span_to_embeddable_string(span)
829837
));
830838
} else {
831-
p!(write("@"), print_def_path(did, args));
839+
p!("@", print_def_path(did, args));
832840
}
833841
} else {
834842
p!(print_def_path(did, args));

tests/mir-opt/building/async_await.a-{closure#0}.coroutine_resume.0.mir

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
storage_conflicts: BitMatrix(0x0) {},
1010
} */
1111

12-
fn a::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:12:14: 12:16}>, _2: &mut Context<'_>) -> Poll<()> {
12+
fn a::{closure#0}(_1: Pin<&mut {async fn body of a()}>, _2: &mut Context<'_>) -> Poll<()> {
1313
debug _task_context => _4;
1414
let mut _0: std::task::Poll<()>;
1515
let mut _3: ();
1616
let mut _4: &mut std::task::Context<'_>;
1717
let mut _5: u32;
1818

1919
bb0: {
20-
_5 = discriminant((*(_1.0: &mut {async fn body@$DIR/async_await.rs:12:14: 12:16})));
20+
_5 = discriminant((*(_1.0: &mut {async fn body of a()})));
2121
switchInt(move _5) -> [0: bb1, 1: bb4, otherwise: bb5];
2222
}
2323

@@ -29,7 +29,7 @@ fn a::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:12:14: 12:16}>
2929

3030
bb2: {
3131
_0 = Poll::<()>::Ready(move _3);
32-
discriminant((*(_1.0: &mut {async fn body@$DIR/async_await.rs:12:14: 12:16}))) = 1;
32+
discriminant((*(_1.0: &mut {async fn body of a()}))) = 1;
3333
return;
3434
}
3535

tests/mir-opt/building/async_await.b-{closure#0}.coroutine_resume.0.mir

+31-31
Original file line numberDiff line numberDiff line change
@@ -51,34 +51,34 @@
5151
},
5252
} */
5353

54-
fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>, _2: &mut Context<'_>) -> Poll<()> {
54+
fn b::{closure#0}(_1: Pin<&mut {async fn body of b()}>, _2: &mut Context<'_>) -> Poll<()> {
5555
debug _task_context => _38;
5656
let mut _0: std::task::Poll<()>;
5757
let _3: ();
58-
let mut _4: {async fn body@$DIR/async_await.rs:12:14: 12:16};
59-
let mut _5: {async fn body@$DIR/async_await.rs:12:14: 12:16};
60-
let mut _6: {async fn body@$DIR/async_await.rs:12:14: 12:16};
58+
let mut _4: {async fn body of a()};
59+
let mut _5: {async fn body of a()};
60+
let mut _6: {async fn body of a()};
6161
let mut _7: ();
6262
let _8: ();
6363
let mut _9: std::task::Poll<()>;
64-
let mut _10: std::pin::Pin<&mut {async fn body@$DIR/async_await.rs:12:14: 12:16}>;
65-
let mut _11: &mut {async fn body@$DIR/async_await.rs:12:14: 12:16};
66-
let mut _12: &mut {async fn body@$DIR/async_await.rs:12:14: 12:16};
64+
let mut _10: std::pin::Pin<&mut {async fn body of a()}>;
65+
let mut _11: &mut {async fn body of a()};
66+
let mut _12: &mut {async fn body of a()};
6767
let mut _13: &mut std::task::Context<'_>;
6868
let mut _14: &mut std::task::Context<'_>;
6969
let mut _15: &mut std::task::Context<'_>;
7070
let mut _16: isize;
7171
let mut _18: !;
7272
let mut _19: &mut std::task::Context<'_>;
7373
let mut _20: ();
74-
let mut _21: {async fn body@$DIR/async_await.rs:12:14: 12:16};
75-
let mut _22: {async fn body@$DIR/async_await.rs:12:14: 12:16};
76-
let mut _23: {async fn body@$DIR/async_await.rs:12:14: 12:16};
74+
let mut _21: {async fn body of a()};
75+
let mut _22: {async fn body of a()};
76+
let mut _23: {async fn body of a()};
7777
let _24: ();
7878
let mut _25: std::task::Poll<()>;
79-
let mut _26: std::pin::Pin<&mut {async fn body@$DIR/async_await.rs:12:14: 12:16}>;
80-
let mut _27: &mut {async fn body@$DIR/async_await.rs:12:14: 12:16};
81-
let mut _28: &mut {async fn body@$DIR/async_await.rs:12:14: 12:16};
79+
let mut _26: std::pin::Pin<&mut {async fn body of a()}>;
80+
let mut _27: &mut {async fn body of a()};
81+
let mut _28: &mut {async fn body of a()};
8282
let mut _29: &mut std::task::Context<'_>;
8383
let mut _30: &mut std::task::Context<'_>;
8484
let mut _31: &mut std::task::Context<'_>;
@@ -90,7 +90,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
9090
let mut _38: &mut std::task::Context<'_>;
9191
let mut _39: u32;
9292
scope 1 {
93-
debug __awaitee => (((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#3).0: {async fn body@$DIR/async_await.rs:12:14: 12:16});
93+
debug __awaitee => (((*(_1.0: &mut {async fn body of b()})) as variant#3).0: {async fn body of a()});
9494
let _17: ();
9595
scope 2 {
9696
}
@@ -99,7 +99,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
9999
}
100100
}
101101
scope 4 {
102-
debug __awaitee => (((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#4).0: {async fn body@$DIR/async_await.rs:12:14: 12:16});
102+
debug __awaitee => (((*(_1.0: &mut {async fn body of b()})) as variant#4).0: {async fn body of a()});
103103
let _33: ();
104104
scope 5 {
105105
}
@@ -109,7 +109,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
109109
}
110110

111111
bb0: {
112-
_39 = discriminant((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})));
112+
_39 = discriminant((*(_1.0: &mut {async fn body of b()})));
113113
switchInt(move _39) -> [0: bb1, 1: bb29, 3: bb27, 4: bb28, otherwise: bb8];
114114
}
115115

@@ -122,14 +122,14 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
122122
}
123123

124124
bb2: {
125-
_4 = <{async fn body@$DIR/async_await.rs:12:14: 12:16} as IntoFuture>::into_future(move _5) -> [return: bb3, unwind unreachable];
125+
_4 = <{async fn body of a()} as IntoFuture>::into_future(move _5) -> [return: bb3, unwind unreachable];
126126
}
127127

128128
bb3: {
129129
StorageDead(_5);
130130
PlaceMention(_4);
131131
nop;
132-
(((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#3).0: {async fn body@$DIR/async_await.rs:12:14: 12:16}) = move _4;
132+
(((*(_1.0: &mut {async fn body of b()})) as variant#3).0: {async fn body of a()}) = move _4;
133133
goto -> bb4;
134134
}
135135

@@ -139,9 +139,9 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
139139
StorageLive(_10);
140140
StorageLive(_11);
141141
StorageLive(_12);
142-
_12 = &mut (((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#3).0: {async fn body@$DIR/async_await.rs:12:14: 12:16});
142+
_12 = &mut (((*(_1.0: &mut {async fn body of b()})) as variant#3).0: {async fn body of a()});
143143
_11 = &mut (*_12);
144-
_10 = Pin::<&mut {async fn body@$DIR/async_await.rs:12:14: 12:16}>::new_unchecked(move _11) -> [return: bb5, unwind unreachable];
144+
_10 = Pin::<&mut {async fn body of a()}>::new_unchecked(move _11) -> [return: bb5, unwind unreachable];
145145
}
146146

147147
bb5: {
@@ -157,7 +157,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
157157
bb6: {
158158
_13 = &mut (*_14);
159159
StorageDead(_15);
160-
_9 = <{async fn body@$DIR/async_await.rs:12:14: 12:16} as Future>::poll(move _10, move _13) -> [return: bb7, unwind unreachable];
160+
_9 = <{async fn body of a()} as Future>::poll(move _10, move _13) -> [return: bb7, unwind unreachable];
161161
}
162162

163163
bb7: {
@@ -186,7 +186,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
186186
StorageDead(_4);
187187
StorageDead(_19);
188188
StorageDead(_20);
189-
discriminant((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2}))) = 3;
189+
discriminant((*(_1.0: &mut {async fn body of b()}))) = 3;
190190
return;
191191
}
192192

@@ -199,7 +199,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
199199
StorageDead(_12);
200200
StorageDead(_9);
201201
StorageDead(_8);
202-
drop((((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#3).0: {async fn body@$DIR/async_await.rs:12:14: 12:16})) -> [return: bb12, unwind unreachable];
202+
drop((((*(_1.0: &mut {async fn body of b()})) as variant#3).0: {async fn body of a()})) -> [return: bb12, unwind unreachable];
203203
}
204204

205205
bb11: {
@@ -224,14 +224,14 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
224224
}
225225

226226
bb14: {
227-
_21 = <{async fn body@$DIR/async_await.rs:12:14: 12:16} as IntoFuture>::into_future(move _22) -> [return: bb15, unwind unreachable];
227+
_21 = <{async fn body of a()} as IntoFuture>::into_future(move _22) -> [return: bb15, unwind unreachable];
228228
}
229229

230230
bb15: {
231231
StorageDead(_22);
232232
PlaceMention(_21);
233233
nop;
234-
(((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#4).0: {async fn body@$DIR/async_await.rs:12:14: 12:16}) = move _21;
234+
(((*(_1.0: &mut {async fn body of b()})) as variant#4).0: {async fn body of a()}) = move _21;
235235
goto -> bb16;
236236
}
237237

@@ -241,9 +241,9 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
241241
StorageLive(_26);
242242
StorageLive(_27);
243243
StorageLive(_28);
244-
_28 = &mut (((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#4).0: {async fn body@$DIR/async_await.rs:12:14: 12:16});
244+
_28 = &mut (((*(_1.0: &mut {async fn body of b()})) as variant#4).0: {async fn body of a()});
245245
_27 = &mut (*_28);
246-
_26 = Pin::<&mut {async fn body@$DIR/async_await.rs:12:14: 12:16}>::new_unchecked(move _27) -> [return: bb17, unwind unreachable];
246+
_26 = Pin::<&mut {async fn body of a()}>::new_unchecked(move _27) -> [return: bb17, unwind unreachable];
247247
}
248248

249249
bb17: {
@@ -259,7 +259,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
259259
bb18: {
260260
_29 = &mut (*_30);
261261
StorageDead(_31);
262-
_25 = <{async fn body@$DIR/async_await.rs:12:14: 12:16} as Future>::poll(move _26, move _29) -> [return: bb19, unwind unreachable];
262+
_25 = <{async fn body of a()} as Future>::poll(move _26, move _29) -> [return: bb19, unwind unreachable];
263263
}
264264

265265
bb19: {
@@ -283,7 +283,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
283283
StorageDead(_21);
284284
StorageDead(_35);
285285
StorageDead(_36);
286-
discriminant((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2}))) = 4;
286+
discriminant((*(_1.0: &mut {async fn body of b()}))) = 4;
287287
return;
288288
}
289289

@@ -296,7 +296,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
296296
StorageDead(_28);
297297
StorageDead(_25);
298298
StorageDead(_24);
299-
drop((((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2})) as variant#4).0: {async fn body@$DIR/async_await.rs:12:14: 12:16})) -> [return: bb23, unwind unreachable];
299+
drop((((*(_1.0: &mut {async fn body of b()})) as variant#4).0: {async fn body of a()})) -> [return: bb23, unwind unreachable];
300300
}
301301

302302
bb22: {
@@ -319,7 +319,7 @@ fn b::{closure#0}(_1: Pin<&mut {async fn body@$DIR/async_await.rs:15:18: 18:2}>,
319319

320320
bb25: {
321321
_0 = Poll::<()>::Ready(move _37);
322-
discriminant((*(_1.0: &mut {async fn body@$DIR/async_await.rs:15:18: 18:2}))) = 1;
322+
discriminant((*(_1.0: &mut {async fn body of b()}))) = 1;
323323
return;
324324
}
325325

tests/ui/async-await/future-sizes/async-awaiting-fut.stdout

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
print-type-size type: `{async fn body@$DIR/async-awaiting-fut.rs:21:21: 24:2}`: 3078 bytes, alignment: 1 bytes
1+
print-type-size type: `{async fn body of test()}`: 3078 bytes, alignment: 1 bytes
22
print-type-size discriminant: 1 bytes
33
print-type-size variant `Unresumed`: 0 bytes
44
print-type-size variant `Suspend0`: 3077 bytes
5-
print-type-size local `.__awaitee`: 3077 bytes, type: {async fn body@$DIR/async-awaiting-fut.rs:10:64: 19:2}
5+
print-type-size local `.__awaitee`: 3077 bytes, type: {async fn body of calls_fut<{async fn body of big_fut()}>()}
66
print-type-size variant `Returned`: 0 bytes
77
print-type-size variant `Panicked`: 0 bytes
8-
print-type-size type: `std::mem::ManuallyDrop<{async fn body@$DIR/async-awaiting-fut.rs:10:64: 19:2}>`: 3077 bytes, alignment: 1 bytes
8+
print-type-size type: `std::mem::ManuallyDrop<{async fn body of calls_fut<{async fn body of big_fut()}>()}>`: 3077 bytes, alignment: 1 bytes
99
print-type-size field `.value`: 3077 bytes
10-
print-type-size type: `std::mem::MaybeUninit<{async fn body@$DIR/async-awaiting-fut.rs:10:64: 19:2}>`: 3077 bytes, alignment: 1 bytes
10+
print-type-size type: `std::mem::MaybeUninit<{async fn body of calls_fut<{async fn body of big_fut()}>()}>`: 3077 bytes, alignment: 1 bytes
1111
print-type-size variant `MaybeUninit`: 3077 bytes
1212
print-type-size field `.uninit`: 0 bytes
1313
print-type-size field `.value`: 3077 bytes
14-
print-type-size type: `{async fn body@$DIR/async-awaiting-fut.rs:10:64: 19:2}`: 3077 bytes, alignment: 1 bytes
14+
print-type-size type: `{async fn body of calls_fut<{async fn body of big_fut()}>()}`: 3077 bytes, alignment: 1 bytes
1515
print-type-size discriminant: 1 bytes
1616
print-type-size variant `Unresumed`: 1025 bytes
1717
print-type-size upvar `.fut`: 1025 bytes, offset: 0 bytes, alignment: 1 bytes
@@ -20,29 +20,29 @@ print-type-size upvar `.fut`: 1025 bytes, offset: 0 bytes, alignment: 1
2020
print-type-size padding: 1 bytes
2121
print-type-size local `.fut`: 1025 bytes, alignment: 1 bytes
2222
print-type-size local `..coroutine_field4`: 1 bytes, type: bool
23-
print-type-size local `.__awaitee`: 1 bytes, type: {async fn body@$DIR/async-awaiting-fut.rs:6:17: 6:19}
23+
print-type-size local `.__awaitee`: 1 bytes, type: {async fn body of wait()}
2424
print-type-size variant `Suspend1`: 3076 bytes
2525
print-type-size upvar `.fut`: 1025 bytes, offset: 0 bytes, alignment: 1 bytes
2626
print-type-size padding: 1026 bytes
2727
print-type-size local `..coroutine_field4`: 1 bytes, alignment: 1 bytes, type: bool
28-
print-type-size local `.__awaitee`: 1025 bytes, type: {async fn body@$DIR/async-awaiting-fut.rs:8:35: 8:37}
28+
print-type-size local `.__awaitee`: 1025 bytes, type: {async fn body of big_fut()}
2929
print-type-size variant `Suspend2`: 2052 bytes
3030
print-type-size upvar `.fut`: 1025 bytes, offset: 0 bytes, alignment: 1 bytes
3131
print-type-size padding: 1 bytes
3232
print-type-size local `.fut`: 1025 bytes, alignment: 1 bytes
3333
print-type-size local `..coroutine_field4`: 1 bytes, type: bool
34-
print-type-size local `.__awaitee`: 1 bytes, type: {async fn body@$DIR/async-awaiting-fut.rs:6:17: 6:19}
34+
print-type-size local `.__awaitee`: 1 bytes, type: {async fn body of wait()}
3535
print-type-size variant `Returned`: 1025 bytes
3636
print-type-size upvar `.fut`: 1025 bytes, offset: 0 bytes, alignment: 1 bytes
3737
print-type-size variant `Panicked`: 1025 bytes
3838
print-type-size upvar `.fut`: 1025 bytes, offset: 0 bytes, alignment: 1 bytes
39-
print-type-size type: `std::mem::ManuallyDrop<{async fn body@$DIR/async-awaiting-fut.rs:8:35: 8:37}>`: 1025 bytes, alignment: 1 bytes
39+
print-type-size type: `std::mem::ManuallyDrop<{async fn body of big_fut()}>`: 1025 bytes, alignment: 1 bytes
4040
print-type-size field `.value`: 1025 bytes
41-
print-type-size type: `std::mem::MaybeUninit<{async fn body@$DIR/async-awaiting-fut.rs:8:35: 8:37}>`: 1025 bytes, alignment: 1 bytes
41+
print-type-size type: `std::mem::MaybeUninit<{async fn body of big_fut()}>`: 1025 bytes, alignment: 1 bytes
4242
print-type-size variant `MaybeUninit`: 1025 bytes
4343
print-type-size field `.uninit`: 0 bytes
4444
print-type-size field `.value`: 1025 bytes
45-
print-type-size type: `{async fn body@$DIR/async-awaiting-fut.rs:8:35: 8:37}`: 1025 bytes, alignment: 1 bytes
45+
print-type-size type: `{async fn body of big_fut()}`: 1025 bytes, alignment: 1 bytes
4646
print-type-size discriminant: 1 bytes
4747
print-type-size variant `Unresumed`: 1024 bytes
4848
print-type-size upvar `.arg`: 1024 bytes
@@ -52,13 +52,13 @@ print-type-size variant `Panicked`: 1024 bytes
5252
print-type-size upvar `.arg`: 1024 bytes
5353
print-type-size type: `std::mem::ManuallyDrop<bool>`: 1 bytes, alignment: 1 bytes
5454
print-type-size field `.value`: 1 bytes
55-
print-type-size type: `std::mem::ManuallyDrop<{async fn body@$DIR/async-awaiting-fut.rs:6:17: 6:19}>`: 1 bytes, alignment: 1 bytes
55+
print-type-size type: `std::mem::ManuallyDrop<{async fn body of wait()}>`: 1 bytes, alignment: 1 bytes
5656
print-type-size field `.value`: 1 bytes
5757
print-type-size type: `std::mem::MaybeUninit<bool>`: 1 bytes, alignment: 1 bytes
5858
print-type-size variant `MaybeUninit`: 1 bytes
5959
print-type-size field `.uninit`: 0 bytes
6060
print-type-size field `.value`: 1 bytes
61-
print-type-size type: `std::mem::MaybeUninit<{async fn body@$DIR/async-awaiting-fut.rs:6:17: 6:19}>`: 1 bytes, alignment: 1 bytes
61+
print-type-size type: `std::mem::MaybeUninit<{async fn body of wait()}>`: 1 bytes, alignment: 1 bytes
6262
print-type-size variant `MaybeUninit`: 1 bytes
6363
print-type-size field `.uninit`: 0 bytes
6464
print-type-size field `.value`: 1 bytes
@@ -67,7 +67,7 @@ print-type-size discriminant: 1 bytes
6767
print-type-size variant `Ready`: 0 bytes
6868
print-type-size field `.0`: 0 bytes
6969
print-type-size variant `Pending`: 0 bytes
70-
print-type-size type: `{async fn body@$DIR/async-awaiting-fut.rs:6:17: 6:19}`: 1 bytes, alignment: 1 bytes
70+
print-type-size type: `{async fn body of wait()}`: 1 bytes, alignment: 1 bytes
7171
print-type-size discriminant: 1 bytes
7272
print-type-size variant `Unresumed`: 0 bytes
7373
print-type-size variant `Returned`: 0 bytes

0 commit comments

Comments
 (0)