/// # Examples
/// ```
/// let x = rimpiazza::replace_expand!(include_str!("../testfile"), "hate" => "love");
/// assert_eq!("I love pizza", x);
/// ```
#[proc_macro]
#[cfg(feature = "nightly")]
pub fn replace_expand(input: TokenStream) -> TokenStream {
let input = input.expand_expr().expect("Couldn't expand macros");
replace(input)
}
The test above fails, why can't it expand the include_str!()
macro?