File: wrong-type-span.rs

package info (click to toggle)
rust-quote 1.0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 109 bytes parent folder | download | duplicates (96)
1
2
3
4
5
6
7
use quote::quote_spanned;

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