about summary refs log tree commit diff
path: root/tests/ui/meta/revision-bad.rs
blob: 0af5624ff9c59beb6a996f7f2be7ec1f336f9a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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

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

fn main() {
    die();
}