]> git.lizzy.rs Git - rust.git/blob - src/test/ui/attributes/auxiliary/key-value-expansion.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / attributes / auxiliary / key-value-expansion.rs
1 // force-host
2 // no-prefer-dynamic
3
4 #![crate_type = "proc-macro"]
5
6 extern crate proc_macro;
7 use proc_macro::*;
8
9 #[proc_macro_derive(EthabiContract, attributes(ethabi_contract_options))]
10 pub fn ethabi_derive(input: TokenStream) -> TokenStream {
11     Default::default()
12 }