]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/test.rs
Rollup merge of #106816 - TimNN:rental-remap, r=oli-obj
[rust.git] / tests / 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() {}