//! Dummy implementations that we emit along with an error. use proc_macro2::Ident; use proc_macro_error::append_dummy; use quote::quote; pub fn ini(name: &Ident) { append_dummy(quote! { impl #name { pub fn parse<'a>(i: &'a ::ini::Ini) -> ::std::Result { unimplemented!() } } }); }