mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 11:17:26 +03:00
975402e329
This directive was only being used by one test, which can just as easily use the more general `//@ failure-status` directive instead. All of the removed exit-code checks were redundant with other exit-code checks that are still present.
8 lines
206 B
Rust
8 lines
206 B
Rust
//@ revisions: cfail1 cfail2
|
|
//@ failure-status: 101
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_delayed_bug_from_inside_query]
|
|
fn main() {} //~ ERROR delayed bug triggered by #[rustc_delayed_bug_from_inside_query]
|