mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
5b576665e5
Co-authored-by: est31 <est31@users.noreply.github.com> Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com> Co-authored-by: Vadim Petrochenkov <vadim.petrochenkov@gmail.com>
13 lines
221 B
Rust
13 lines
221 B
Rust
// force-host
|
|
// no-prefer-dynamic
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_attribute]
|
|
pub fn diagnostic(i: TokenStream, _: TokenStream) -> TokenStream {
|
|
i
|
|
}
|