2016-03-02 13:25:25 -06:00
|
|
|
// Meta test for compiletest: check that when we give the wrong error
|
|
|
|
// patterns, the test fails.
|
|
|
|
|
2020-04-16 01:50:32 -05:00
|
|
|
//@ run-fail
|
2016-03-02 13:25:25 -06:00
|
|
|
//@ revisions: foo bar
|
|
|
|
//@ should-fail
|
2021-04-28 20:02:07 -05:00
|
|
|
//@ needs-run-enabled
|
2024-10-11 20:41:42 -05:00
|
|
|
//@ compile-flags: --remap-path-prefix={{src-base}}=remapped
|
2016-03-02 13:25:25 -06:00
|
|
|
//@[foo] error-pattern:bar
|
|
|
|
//@[bar] error-pattern:foo
|
|
|
|
|
2016-05-26 21:39:36 -05:00
|
|
|
#[cfg(foo)]
|
|
|
|
fn die() {
|
|
|
|
panic!("foo");
|
|
|
|
}
|
|
|
|
#[cfg(bar)]
|
|
|
|
fn die() {
|
|
|
|
panic!("bar");
|
|
|
|
}
|
2016-03-02 13:25:25 -06:00
|
|
|
|
2016-05-26 21:39:36 -05:00
|
|
|
fn main() {
|
|
|
|
die();
|
|
|
|
}
|