rust/src/test/ui/quote-with-interpolated.rs

10 lines
188 B
Rust
Raw Normal View History

#![feature(quote)]
fn main() {
macro_rules! foo {
($bar:expr) => {
quote_expr!(cx, $bar) //~ ERROR quote! with interpolated token
}
}
foo!(bar);
}