mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 13:16:40 +00:00
9 lines
194 B
Rust
9 lines
194 B
Rust
extern crate proc_macro;
|
|
|
|
struct Zeroable;
|
|
|
|
#[proc_macro_derive(Zeroable)]
|
|
pub fn derive_zeroable(_: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
|
proc_macro::TokenStream::default()
|
|
}
|