]> git.lizzy.rs Git - rust.git/blob - tests/incremental/issue-35593.rs
Rollup merge of #107700 - jyn514:tools-builder, r=Mark-Simulacrum
[rust.git] / tests / incremental / issue-35593.rs
1 // Regression test for #35593. Check that we can reuse this trivially
2 // equal example.
3
4 // revisions:rpass1 rpass2
5 // compile-flags: -Z query-dep-graph
6
7 #![feature(rustc_attrs)]
8 #![rustc_partition_reused(module="issue_35593", cfg="rpass2")]
9
10 fn main() {
11     println!("hello world");
12 }