about summary refs log tree commit diff
path: root/src/test/incremental
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-03-21 01:06:16 +0000
committerbors <bors@rust-lang.org>2018-03-21 01:06:16 +0000
commitc19264fa835a1eca86de4fd2e86a87b3919e57cf (patch)
tree2a768000004d96f6ebc687949ed795212c68f458 /src/test/incremental
parent10420536ec95b05603b20e6ef769b44ed8c1ea8e (diff)
parent13bfbe1394732163c7130dd57e6b0a86e147c7e8 (diff)
downloadrust-c19264fa835a1eca86de4fd2e86a87b3919e57cf.tar.gz
rust-c19264fa835a1eca86de4fd2e86a87b3919e57cf.zip
Auto merge of #49200 - oli-obk:extern_static_metadata, r=michaelwoerister
Encode/decode extern statics in metadata and incremental cache

fixes #49153

cc @abonander

r? @michaelwoerister incremental ICE
Diffstat (limited to 'src/test/incremental')
-rw-r--r--src/test/incremental/extern_static/issue-49153.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/incremental/extern_static/issue-49153.rs b/src/test/incremental/extern_static/issue-49153.rs
new file mode 100644
index 00000000000..e0538e09c64
--- /dev/null
+++ b/src/test/incremental/extern_static/issue-49153.rs
@@ -0,0 +1,21 @@
+// 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.
+
+// https://github.com/rust-lang/rust/issues/49153
+
+// revisions:rpass1 rpass2
+
+extern "C" {
+    pub static __ImageBase: u8;
+}
+
+pub static FOO: &'static u8 = unsafe { &__ImageBase };
+
+fn main() {}