summaryrefslogtreecommitdiffstats
path: root/tests/incremental/static_stable_hash/issue-49301.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/incremental/static_stable_hash/issue-49301.rs')
-rw-r--r--tests/incremental/static_stable_hash/issue-49301.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/incremental/static_stable_hash/issue-49301.rs b/tests/incremental/static_stable_hash/issue-49301.rs
new file mode 100644
index 000000000..fdd05c72c
--- /dev/null
+++ b/tests/incremental/static_stable_hash/issue-49301.rs
@@ -0,0 +1,18 @@
+// https://github.com/rust-lang/rust/issues/49081
+
+// revisions:rpass1 rpass2
+
+#[cfg(rpass1)]
+pub static A: &str = "hello";
+#[cfg(rpass2)]
+pub static A: &str = "xxxxx";
+
+#[cfg(rpass1)]
+fn main() {
+ assert_eq!(A, "hello");
+}
+
+#[cfg(rpass2)]
+fn main() {
+ assert_eq!(A, "xxxxx");
+}