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, 27 insertions, 0 deletions
diff --git a/src/test/ui/static/static-extern-type.rs b/src/test/ui/static/static-extern-type.rs
new file mode 100644
index 000000000..4fa48fa13
--- /dev/null
+++ b/src/test/ui/static/static-extern-type.rs
@@ -0,0 +1,27 @@
+// 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() {}