2020-02-06 05:46:26 -06:00
|
|
|
// Test that debuginfo does not introduce a dependency edge to the hir_crate
|
2016-12-08 11:47:35 -06:00
|
|
|
// dep-node.
|
|
|
|
|
|
|
|
//@ revisions:rpass1 rpass2
|
2017-09-28 04:58:45 -05:00
|
|
|
//@ compile-flags: -Z query-dep-graph
|
|
|
|
|
2016-12-08 11:47:35 -06:00
|
|
|
#![feature(rustc_attrs)]
|
2020-02-06 05:46:26 -06:00
|
|
|
#![rustc_partition_reused(module = "issue_38222-mod1", cfg = "rpass2")]
|
|
|
|
// If codegen had added a dependency edge to the hir_crate dep-node, nothing would
|
2016-12-08 11:47:35 -06:00
|
|
|
// be re-used, so checking that this module was re-used is sufficient.
|
2020-02-06 05:46:26 -06:00
|
|
|
#![rustc_partition_reused(module = "issue_38222", cfg = "rpass2")]
|
2016-12-08 11:47:35 -06:00
|
|
|
|
|
|
|
//@[rpass1] compile-flags: -C debuginfo=1
|
|
|
|
//@[rpass2] compile-flags: -C debuginfo=1
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
mod1::some_fn();
|
|
|
|
}
|
|
|
|
|
|
|
|
mod mod1 {
|
|
|
|
pub fn some_fn() {
|
2017-10-27 11:57:15 -05:00
|
|
|
#[cfg(rpass2)]
|
|
|
|
{}
|
2016-12-08 11:47:35 -06:00
|
|
|
|
2017-10-27 11:57:15 -05:00
|
|
|
let _ = 1;
|
2016-12-08 11:47:35 -06:00
|
|
|
}
|
|
|
|
}
|