mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
27 lines
350 B
Rust
27 lines
350 B
Rust
// run-pass
|
|
// compile-flags:
|
|
|
|
// check that cfg correctly chooses between the macro impls (see also
|
|
// cfg-macros-foo.rs)
|
|
|
|
|
|
#[cfg(foo)]
|
|
#[macro_use]
|
|
mod foo {
|
|
macro_rules! bar {
|
|
() => { true }
|
|
}
|
|
}
|
|
|
|
#[cfg(not(foo))]
|
|
#[macro_use]
|
|
mod foo {
|
|
macro_rules! bar {
|
|
() => { false }
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
assert!(!bar!())
|
|
}
|