summaryrefslogtreecommitdiffstats
path: root/src/test/incremental/issue-35593.rs
blob: 009e37d17c3b1436941a5929852e6c46cf51dbe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Regression test for #35593. Check that we can reuse this trivially
// equal example.

// revisions:rpass1 rpass2
// compile-flags: -Z query-dep-graph

#![feature(rustc_attrs)]
#![rustc_partition_reused(module="issue_35593", cfg="rpass2")]

fn main() {
    println!("hello world");
}