mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
280 B
Rust
15 lines
280 B
Rust
//@ aux-build:make-macro.rs
|
|
//@ aux-build:meta-macro.rs
|
|
//@ edition:2018
|
|
//@ compile-flags: -Z span-debug
|
|
//@ run-pass
|
|
|
|
#![no_std] // Don't load unnecessary hygiene information from std
|
|
extern crate std;
|
|
|
|
extern crate meta_macro;
|
|
|
|
fn main() {
|
|
meta_macro::print_def_site!();
|
|
}
|