about summary refs log tree commit diff
path: root/tests/codegen/fn-impl-trait-self.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/fn-impl-trait-self.rs')
-rw-r--r--tests/codegen/fn-impl-trait-self.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/codegen/fn-impl-trait-self.rs b/tests/codegen/fn-impl-trait-self.rs
deleted file mode 100644
index 5799d23b5a0..00000000000
--- a/tests/codegen/fn-impl-trait-self.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-//@ compile-flags: -g
-//@ ignore-wasi wasi codegens the main symbol differently
-//
-// CHECK-LABEL: @main
-// MSVC: {{.*}}DIDerivedType(tag: DW_TAG_pointer_type, name: "recursive_type$ (*)()",{{.*}}
-// NONMSVC: {{.*}}DIDerivedType(tag: DW_TAG_pointer_type, name: "fn() -> <recursive_type>",{{.*}}
-//
-// CHECK: {{.*}}DISubroutineType{{.*}}
-// CHECK: {{.*}}DIBasicType(name: "<recur_type>", size: {{32|64}}, encoding: DW_ATE_unsigned)
-
-pub fn foo() -> impl Copy {
-    foo
-}
-
-fn main() {
-    let my_res = foo();
-}