blob: 5a0672b5fab8d35d63d1f75a9b088a3a91d260e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//! This file provides a macro to delegate the implementation of a
//! type that wraps a graph. More precisely, the macro helps the
//! wrapper type implement the various Graph-related traits.
use proc_macro::TokenStream;
#[proc_macro_derive(Testing)]
pub fn test_derive(input: TokenStream) -> TokenStream {
println!("input: {input:?}");
TokenStream::new()
}
|