We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa6c7c commit 1297cb7Copy full SHA for 1297cb7
src/test/ui/async-await/issue-84841.rs
@@ -0,0 +1,10 @@
1
+// edition:2018
2
+
3
+async fn main() {
4
+ // Adding an .await here avoids the ICE
5
+ test()?;
6
+}
7
8
+// Removing the const generic parameter here avoids the ICE
9
+async fn test<const N: usize>() {
10
0 commit comments