mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-03-07 08:47:31 +00:00
10 lines
184 B
Rust
10 lines
184 B
Rust
|
// aux-build:../../auxiliary/proc_macro_with_span.rs
|
||
|
|
||
|
extern crate proc_macro_with_span;
|
||
|
|
||
|
use proc_macro_with_span::with_span;
|
||
|
|
||
|
fn main() {
|
||
|
println!(with_span!(""something ""));
|
||
|
}
|