]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/issue-49595/issue_49595.rs
Rollup merge of #56476 - GuillaumeGomez:invalid-line-number-match, r=QuietMisdreavus
[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 // compile-pass
14
15 #![feature(rustc_attrs)]
16 #![crate_type = "rlib"]
17
18 #![rustc_partition_codegened(module="issue_49595-tests", cfg="cfail2")]
19 #![rustc_partition_codegened(module="issue_49595-lit_test", cfg="cfail3")]
20
21 mod tests {
22     #[cfg_attr(not(cfail1), test)]
23     fn test() {
24     }
25 }
26
27
28 // Checks that changing a string literal without changing its span
29 // takes effect.
30
31 // replacing a module to have a stable span
32 #[cfg_attr(not(cfail3), path = "auxiliary/lit_a.rs")]
33 #[cfg_attr(cfail3, path = "auxiliary/lit_b.rs")]
34 mod lit;
35
36 pub mod lit_test {
37     #[test]
38     fn lit_test() {
39         println!("{}", ::lit::A);
40     }
41 }