mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +00:00
11 lines
165 B
Rust
11 lines
165 B
Rust
![]() |
pub type S = u8;
|
||
|
|
||
|
macro_rules! generate_exported { () => {
|
||
|
#[macro_export]
|
||
|
macro_rules! exported {
|
||
|
() => ($crate::S)
|
||
|
}
|
||
|
}}
|
||
|
|
||
|
generate_exported!();
|