summary refs log tree commit diff
path: root/tests/ui/proc-macro/test.rs
blob: 9e76deab9ce4be5623907d6d8bd8c3cb1cb1a0d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ check-pass
//@ aux-build:api/mod.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() {}