mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
342 B
Rust
13 lines
342 B
Rust
// check-pass
|
|
// aux-build:api/mod.rs
|
|
|
|
//! 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() {}
|