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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
337 B
Rust
Raw Normal View History

2016-03-02 19:25:25 +00:00
// Meta test for compiletest: check that when we give the wrong error
// patterns, the test fails.
2020-04-16 06:50:32 +00:00
// run-fail
2016-03-02 19:25:25 +00:00
// revisions: foo bar
// should-fail
// needs-run-enabled
2016-03-02 19:25:25 +00:00
//[foo] error-pattern:bar
//[bar] error-pattern:foo
2016-05-27 02:39:36 +00:00
#[cfg(foo)]
fn die() {
panic!("foo");
}
#[cfg(bar)]
fn die() {
panic!("bar");
}
2016-03-02 19:25:25 +00:00
2016-05-27 02:39:36 +00:00
fn main() {
die();
}