about summary refs log tree commit diff
path: root/src/test/ui/static
diff options
context:
space:
mode:
authorMichael Bradshaw <mjbshaw@gmail.com>2018-10-21 20:09:42 -0700
committerMichael Bradshaw <mjbshaw@gmail.com>2018-10-21 20:09:42 -0700
commit412ad9bf3746bd0682db136c36a433f3205715f1 (patch)
tree404611fe213015b90bb3a2cdcbb21818e8ac2975 /src/test/ui/static
parent424a749a01224239ba2c8850f16007d57db0a242 (diff)
downloadrust-412ad9bf3746bd0682db136c36a433f3205715f1.tar.gz
rust-412ad9bf3746bd0682db136c36a433f3205715f1.zip
Allow extern statics with an extern type
Fixes #55239
Diffstat (limited to 'src/test/ui/static')
-rw-r--r--src/test/ui/static/static-extern-type.rs37
1 files changed, 37 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 00000000000..72e2853b9f0
--- /dev/null
+++ b/src/test/ui/static/static-extern-type.rs
@@ -0,0 +1,37 @@
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// compile-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() {}