mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
337 B
Rust
23 lines
337 B
Rust
// 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();
|
|
}
|