mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
524 B
Rust
18 lines
524 B
Rust
// Test that we detect changes to the `dep_kind` query. If the change is not
|
|
// detected then -Zincremental-verify-ich will trigger an assertion.
|
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
|
// needs-unwind
|
|
// revisions:cfail1 cfail2
|
|
// compile-flags: -Z query-dep-graph -Cpanic=unwind
|
|
// needs-unwind
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
#![feature(panic_unwind)]
|
|
|
|
// Turn the panic_unwind crate from an explicit into an implicit query:
|
|
#[cfg(cfail1)]
|
|
extern crate panic_unwind;
|
|
|
|
fn main() {}
|