summaryrefslogtreecommitdiffstats
path: root/src/test/incremental/static_refering_to_other_static2
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/incremental/static_refering_to_other_static2')
-rw-r--r--src/test/incremental/static_refering_to_other_static2/issue.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/incremental/static_refering_to_other_static2/issue.rs b/src/test/incremental/static_refering_to_other_static2/issue.rs
new file mode 100644
index 000000000..720bb1e22
--- /dev/null
+++ b/src/test/incremental/static_refering_to_other_static2/issue.rs
@@ -0,0 +1,10 @@
+// revisions:rpass1 rpass2
+
+#[cfg(rpass1)]
+pub static A: i32 = 42;
+#[cfg(rpass2)]
+pub static A: i32 = 43;
+
+pub static B: &i32 = &A;
+
+fn main() {}