// 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(); }