]> git.lizzy.rs Git - rust.git/blob - src/test/ui/quote-with-interpolated.rs
Remove licenses
[rust.git] / src / test / ui / quote-with-interpolated.rs
1 #![feature(quote)]
2 fn main() {
3     macro_rules! foo {
4         ($bar:expr)  => {
5             quote_expr!(cx, $bar) //~ ERROR quote! with interpolated token
6         }
7     }
8     foo!(bar);
9 }