mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
21 lines
407 B
Rust
21 lines
407 B
Rust
#![feature(rustc_attrs)]
|
|
|
|
macro_rules! test { ($nm:ident,
|
|
#[$a:meta],
|
|
$i:item) => (mod $nm { #![$a] $i }); }
|
|
|
|
test!(a,
|
|
#[cfg(false)],
|
|
pub fn bar() { });
|
|
|
|
test!(b,
|
|
#[cfg(not(FALSE))],
|
|
pub fn bar() { });
|
|
|
|
#[rustc_dummy]
|
|
fn main() {
|
|
a::bar();
|
|
//~^ ERROR failed to resolve: use of unresolved module or unlinked crate `a`
|
|
b::bar();
|
|
}
|