about summary refs log tree commit diff
path: root/tests/codegen-llvm/async-closure-debug.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen-llvm/async-closure-debug.rs')
-rw-r--r--tests/codegen-llvm/async-closure-debug.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/codegen-llvm/async-closure-debug.rs b/tests/codegen-llvm/async-closure-debug.rs
new file mode 100644
index 00000000000..b5b369e6e54
--- /dev/null
+++ b/tests/codegen-llvm/async-closure-debug.rs
@@ -0,0 +1,20 @@
+// Just make sure that async closures don't ICE.
+//
+//@ compile-flags: -C debuginfo=2
+//@ edition: 2018
+//@ ignore-msvc
+
+// CHECK-DAG:  [[GEN_FN:!.*]] = !DINamespace(name: "async_closure_test"
+// CHECK-DAG:  [[CLOSURE:!.*]] = !DICompositeType(tag: DW_TAG_structure_type, name: "{closure_env#0}", scope: [[GEN_FN]]
+// CHECK-DAG:  [[UPVAR:!.*]] = !DIDerivedType(tag: DW_TAG_member, name: "upvar", scope: [[CLOSURE]]
+
+fn async_closure_test(upvar: &str) -> impl AsyncFn() + '_ {
+    async move || {
+        let hello = String::from("hello");
+        println!("{hello}, {upvar}");
+    }
+}
+
+fn main() {
+    let _async_closure = async_closure_test("world");
+}