about summary refs log tree commit diff
path: root/tests/ui/resolve/auxiliary/issue-112831-aux.rs
blob: 7d258299c186d0c1c5556236bd34754f4ca3e8ae (plain)
1
2
3
4
5
6
7
8
extern crate proc_macro;

struct Zeroable;

#[proc_macro_derive(Zeroable)]
pub fn derive_zeroable(_: proc_macro::TokenStream) -> proc_macro::TokenStream {
  proc_macro::TokenStream::default()
}