2016-08-23 06:40:53 -05:00
|
|
|
// Regression test for #35593. Check that we can reuse this trivially
|
|
|
|
// equal example.
|
|
|
|
|
2024-02-22 06:10:29 -06:00
|
|
|
//@ revisions:rpass1 rpass2
|
|
|
|
//@ compile-flags: -Z query-dep-graph
|
2016-08-23 06:40:53 -05:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![rustc_partition_reused(module="issue_35593", cfg="rpass2")]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("hello world");
|
|
|
|
}
|