mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
d4b77f64e4
Now that we have both `delayed_bug` and `span_delayed_bug`, it makes sense to use the generic term "delayed bug" more.
9 lines
217 B
Rust
9 lines
217 B
Rust
// revisions: cfail1 cfail2
|
|
// should-ice
|
|
// error-pattern: delayed bug triggered by #[rustc_error(delayed_bug_from_inside_query)]
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_error(delayed_bug_from_inside_query)]
|
|
fn main() {}
|