12 lines
99 B
Rust
12 lines
99 B
Rust
#![feature(decl_macro)]
|
|
|
|
mod n {
|
|
pub static S: i32 = 57;
|
|
}
|
|
|
|
use n::S;
|
|
|
|
pub macro m() {
|
|
S
|
|
}
|