mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
9 lines
220 B
Rust
9 lines
220 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() {}
|