]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/test.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / src / test / ui / proc-macro / test.rs
1 // check-pass
2 // aux-build:api/mod.rs
3
4 //! This is for everything that *would* be a #[test] inside of libproc_macro,
5 //! except for the fact that proc_macro objects are not capable of existing
6 //! inside of an ordinary Rust test execution, only inside a macro.
7
8 extern crate proc_macro_api_tests;
9
10 proc_macro_api_tests::run!();
11
12 fn main() {}