Files
rust/tests/ui/meta/revision-bad.rs

24 lines
404 B
Rust
Raw Normal View History

2016-03-02 14:25:25 -05:00
// Meta test for compiletest: check that when we give the wrong error
// patterns, the test fails.
//@ run-fail
//@ revisions: foo bar
//@ should-fail
//@ needs-run-enabled
//@ compile-flags: --remap-path-prefix={{src-base}}=remapped
//@[foo] error-pattern:bar
//@[bar] error-pattern:foo
2016-03-02 14:25:25 -05:00
2016-05-27 08:09:36 +05:30
#[cfg(foo)]
fn die() {
panic!("foo");
}
#[cfg(bar)]
fn die() {
panic!("bar");
}
2016-03-02 14:25:25 -05:00
2016-05-27 08:09:36 +05:30
fn main() {
die();
}