2025-04-12 15:53:46 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
//@ proc-macro: makro.rs
|
|
|
|
|
//@ edition: 2021
|
2025-09-26 13:59:06 +02:00
|
|
|
//@ ignore-backends: gcc
|
2025-04-12 15:53:46 +00:00
|
|
|
|
2025-09-08 19:25:22 +02:00
|
|
|
// 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.
|
2025-04-12 15:53:46 +00:00
|
|
|
|
2025-09-08 19:25:22 +02:00
|
|
|
makro::check!();
|
2025-04-12 15:53:46 +00:00
|
|
|
|
|
|
|
|
fn main() {}
|