]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/meta-macro.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / src / test / ui / proc-macro / meta-macro.rs
1 // aux-build:make-macro.rs
2 // aux-build:meta-macro.rs
3 // edition:2018
4 // compile-flags: -Z span-debug
5 // run-pass
6
7 #![no_std] // Don't load unnecessary hygiene information from std
8 extern crate std;
9
10 extern crate meta_macro;
11
12 fn main() {
13     meta_macro::print_def_site!();
14 }