2016-08-23 06:40:53 -05:00
|
|
|
// Regression test for #35593. Check that we can reuse this trivially
|
|
|
|
// equal example.
|
|
|
|
|
|
|
|
//@ revisions:rpass1 rpass2
|
2017-09-28 04:58:45 -05:00
|
|
|
//@ 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");
|
|
|
|
}
|