[go: up one dir, main page]

quote 1.0.36

Quasi-quoting macro quote!(...)
Documentation
1
2
3
4
5
6
7
use quote::quote_spanned;

fn main() {
    let span = "";
    let x = 0i32;
    quote_spanned!(span=> #x);
}