mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 16:53:39 +00:00
11 lines
270 B
Rust
11 lines
270 B
Rust
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_attribute]
|
|
pub fn assert_input(args: TokenStream, input: TokenStream) -> TokenStream {
|
|
assert_eq!(input.to_string(), "trait Alias = Sized;");
|
|
assert!(args.is_empty());
|
|
TokenStream::new()
|
|
}
|