mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
11 lines
248 B
Rust
11 lines
248 B
Rust
//@ check-pass
|
|
//@ proc-macro: makro.rs
|
|
//@ edition: 2021
|
|
|
|
// Check that a proc-macro doesn't try to parse frontmatter and instead treats
|
|
// it as a regular Rust token sequence. See `auxiliary/makro.rs` for details.
|
|
|
|
makro::check!();
|
|
|
|
fn main() {}
|