We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbf7aa9 commit 5585610Copy full SHA for 5585610
collector/benchmarks/deeply-nested-async/src/lib.rs
@@ -1,5 +1,7 @@
1
// A regression test for #75992.
2
// Nested asnyc blocks produce an exponentially sized type tree with a lot of duplicates.
3
+//
4
+// Created by @kellerkindt in https://github.com/rust-lang/rust/issues/75992#issuecomment-682595159.
5
6
pub async fn h0(v: &String, x: &u64) { println!("{} {}", v, x) }
7
pub async fn h1(v: &String, x: &u64) { h0(v, x).await }
0 commit comments