summaryrefslogtreecommitdiffstats
path: root/src/test/ui/static/static-extern-type.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/static/static-extern-type.rs')
-rw-r--r--src/test/ui/static/static-extern-type.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/static/static-extern-type.rs b/src/test/ui/static/static-extern-type.rs
deleted file mode 100644
index 4fa48fa13..000000000
--- a/src/test/ui/static/static-extern-type.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-// build-pass (FIXME(62277): could be check-pass?)
-#![feature(extern_types)]
-
-pub mod a {
- extern "C" {
- pub type StartFn;
- pub static start: StartFn;
- }
-}
-
-pub mod b {
- #[repr(transparent)]
- pub struct TransparentType(::a::StartFn);
- extern "C" {
- pub static start: TransparentType;
- }
-}
-
-pub mod c {
- #[repr(C)]
- pub struct CType(u32, ::b::TransparentType);
- extern "C" {
- pub static start: CType;
- }
-}
-
-fn main() {}