2017-12-18 14:20:19 +00:00
|
|
|
// Test that we detect changes to the `dep_kind` query. If the change is not
|
|
|
|
// detected then -Zincremental-verify-ich will trigger an assertion.
|
|
|
|
|
2019-10-18 21:47:54 +00:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
2023-05-02 10:53:09 +00:00
|
|
|
// needs-unwind
|
2017-12-18 14:20:19 +00:00
|
|
|
// revisions:cfail1 cfail2
|
|
|
|
// compile-flags: -Z query-dep-graph -Cpanic=unwind
|
2023-06-14 10:19:21 +00:00
|
|
|
// needs-unwind
|
2019-07-02 21:30:28 +00:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2017-12-18 14:20:19 +00:00
|
|
|
|
|
|
|
#![feature(panic_unwind)]
|
|
|
|
|
|
|
|
// Turn the panic_unwind crate from an explicit into an implicit query:
|
|
|
|
#[cfg(cfail1)]
|
|
|
|
extern crate panic_unwind;
|
|
|
|
|
|
|
|
fn main() {}
|