mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-06 20:27:48 +00:00
13 lines
228 B
Rust
13 lines
228 B
Rust
//@ check-pass
|
|
//@ proc-macro: makro.rs
|
|
//@ edition: 2021
|
|
|
|
#![feature(frontmatter)]
|
|
|
|
makro::check!();
|
|
|
|
// checks that a proc-macro cannot observe frontmatter tokens.
|
|
// see auxiliary/makro.rs for how it is tested.
|
|
|
|
fn main() {}
|