summaryrefslogtreecommitdiffstats
path: root/src/test/ui/meta/revision-bad.rs
blob: 37ddbe99a9f0310d7dd0f2ca03dca5516efc8ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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
//[foo] error-pattern:bar
//[bar] error-pattern:foo

#[cfg(foo)]
fn die() {
    panic!("foo");
}
#[cfg(bar)]
fn die() {
    panic!("bar");
}

fn main() {
    die();
}