2021-04-29 13:10:14 -05:00
|
|
|
//@ check-pass
|
|
|
|
//@ aux-build:api/mod.rs
|
2024-01-16 15:27:58 -06:00
|
|
|
//@ edition: 2021
|
2021-04-29 13:10:14 -05:00
|
|
|
|
|
|
|
//! This is for everything that *would* be a #[test] inside of libproc_macro,
|
|
|
|
//! except for the fact that proc_macro objects are not capable of existing
|
|
|
|
//! inside of an ordinary Rust test execution, only inside a macro.
|
|
|
|
|
|
|
|
extern crate proc_macro_api_tests;
|
|
|
|
|
|
|
|
proc_macro_api_tests::run!();
|
|
|
|
|
|
|
|
fn main() {}
|