blob: dbac90382d1d7477d421ca2824026cb4778e415f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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!();
}
|