summary refs log tree commit diff
path: root/tests/ui/proc-macro/meta-macro.rs
blob: abe63c60fb8de09debb84c514b8f34a5f5f42252 (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!();
}