mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
10 lines
144 B
Rust
10 lines
144 B
Rust
#![feature(proc_macro_quote)]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::quote;
|
|
|
|
fn main() {
|
|
quote!($(a b),*); //~ ERROR mismatched types
|
|
}
|