20 lines
423 B
Rust
20 lines
423 B
Rust
|
// force-host
|
||
|
// no-prefer-dynamic
|
||
|
|
||
|
#![crate_type = "proc-macro"]
|
||
|
|
||
|
extern crate proc_macro;
|
||
|
use proc_macro::*;
|
||
|
|
||
|
#[proc_macro_attribute]
|
||
|
#[deprecated(since = "1.0.0", note = "test")]
|
||
|
pub fn attr(_: TokenStream, input: TokenStream) -> TokenStream {
|
||
|
input
|
||
|
}
|
||
|
|
||
|
#[proc_macro_attribute]
|
||
|
#[deprecated(since = "1.0.0", note = "test")]
|
||
|
pub fn attr_remove(_: TokenStream, _: TokenStream) -> TokenStream {
|
||
|
TokenStream::new()
|
||
|
}
|