]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/change_crate_dep_kind.rs
Rollup merge of #56425 - scottmcm:redo-vec-set_len-docs, r=Centril
[rust.git] / src / test / incremental / change_crate_dep_kind.rs
1 // Test that we detect changes to the `dep_kind` query. If the change is not
2 // detected then -Zincremental-verify-ich will trigger an assertion.
3
4 // revisions:cfail1 cfail2
5 // compile-flags: -Z query-dep-graph -Cpanic=unwind
6 // compile-pass
7
8 #![feature(panic_unwind)]
9
10 // Turn the panic_unwind crate from an explicit into an implicit query:
11 #[cfg(cfail1)]
12 extern crate panic_unwind;
13
14 fn main() {}