mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
13 lines
278 B
Rust
13 lines
278 B
Rust
//@ proc-macro: respan.rs
|
|
//@ revisions: rpass1 rpass2
|
|
|
|
extern crate respan;
|
|
|
|
#[macro_use]
|
|
#[path = "invalid-span-helper-mod.rs"]
|
|
mod invalid_span_helper_mod;
|
|
|
|
// Invoke a macro from a different file - this
|
|
// allows us to get tokens with spans from different files
|
|
helper!(1);
|