mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
270 B
Rust
20 lines
270 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
macro_rules! define_exported { () => {
|
|
#[macro_export]
|
|
macro_rules! exported {
|
|
() => ()
|
|
}
|
|
}}
|
|
|
|
mod inner1 {
|
|
use super::*;
|
|
exported!();
|
|
}
|
|
|
|
mod inner2 {
|
|
define_exported!();
|
|
}
|
|
|
|
fn main() {}
|