diff options
Diffstat (limited to 'tests/incremental/static_stable_hash')
-rw-r--r-- | tests/incremental/static_stable_hash/issue-49301.rs | 18 |
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"); +} |