blob: 8c35f6ca0000dd8f6f57809bfd0f5993544723ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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
// revisions:cfail1 cfail2
// compile-flags: -Z query-dep-graph -Cpanic=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() {}
|