summary refs log tree commit diff
path: root/tests/codegen/debug-accessibility/private-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/debug-accessibility/private-struct.rs')
-rw-r--r--tests/codegen/debug-accessibility/private-struct.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/codegen/debug-accessibility/private-struct.rs b/tests/codegen/debug-accessibility/private-struct.rs
deleted file mode 100644
index 488a680e81c..00000000000
--- a/tests/codegen/debug-accessibility/private-struct.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-//@ compile-flags: -C debuginfo=2
-
-#![allow(dead_code)]
-
-// Checks that visibility information is present in the debuginfo for private structs.
-
-use std::hint::black_box;
-
-struct PrivateFooStruct {
-    x: u32,
-}
-
-// CHECK: {{!.*}} = !DICompositeType(tag: DW_TAG_structure_type, name: "PrivateFooStruct"{{.*}}flags: DIFlagPrivate{{.*}})
-
-fn main() {
-    black_box(PrivateFooStruct { x: 1 });
-}