]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/issue-49595/issue_49595.rs
[incremental] Hash `Allocation`s
[rust.git] / src / test / incremental / issue-49595 / issue_49595.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // revisions:cfail1 cfail2 cfail3
12 // compile-flags: -Z query-dep-graph --test
13 // must-compile-successfully
14
15 #![feature(rustc_attrs)]
16 #![crate_type = "rlib"]
17
18 #![rustc_partition_translated(module="issue_49595-tests", cfg="cfail2")]
19 #![rustc_partition_translated(module="issue_49595-lit_test", cfg="cfail3")]
20
21 mod tests {
22     #[cfg_attr(not(cfail1), ignore)]
23     #[test]
24     fn test() {
25     }
26 }
27
28
29 // Checks that changing a string literal without changing its span
30 // takes effect.
31
32 // replacing a module to have a stable span
33 #[cfg_attr(not(cfail3), path = "auxiliary/lit_a.rs")]
34 #[cfg_attr(cfail3, path = "auxiliary/lit_b.rs")]
35 mod lit;
36
37 pub mod lit_test {
38     #[test]
39     fn lit_test() {
40         println!("{}", ::lit::A);
41     }
42 }