mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00
14 lines
381 B
Rust
14 lines
381 B
Rust
//@ check-pass
|
|
//@ proc-macro: api/proc_macro_api_tests.rs
|
|
//@ edition: 2021
|
|
|
|
//! 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() {}
|