mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
32 lines
702 B
Rust
32 lines
702 B
Rust
//@ revisions:cfail1 cfail2 cfail3
|
|
//@ compile-flags: -Z query-dep-graph --test
|
|
//@ build-pass
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![crate_type = "rlib"]
|
|
|
|
#![rustc_partition_codegened(module="issue_49595-tests", cfg="cfail2")]
|
|
#![rustc_partition_codegened(module="issue_49595-lit_test", cfg="cfail3")]
|
|
|
|
mod tests {
|
|
#[cfg_attr(not(cfail1), test)]
|
|
fn test() {
|
|
}
|
|
}
|
|
|
|
|
|
// Checks that changing a string literal without changing its span
|
|
// takes effect.
|
|
|
|
// replacing a module to have a stable span
|
|
#[cfg_attr(not(cfail3), path = "auxiliary/lit_a.rs")]
|
|
#[cfg_attr(cfail3, path = "auxiliary/lit_b.rs")]
|
|
mod lit;
|
|
|
|
pub mod lit_test {
|
|
#[test]
|
|
fn lit_test() {
|
|
println!("{}", ::lit::A);
|
|
}
|
|
}
|