mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

This will make it easier to validate error improvements I'm working on as well as make it easier to update from rust-lang/rust
12 lines
255 B
Rust
12 lines
255 B
Rust
//@ check-pass
|
|
//@ proc-macro: makro.rs
|
|
//@ edition: 2021
|
|
|
|
makro::check!();
|
|
|
|
// checks that a proc-macro doesn't know or parse frontmatters at all and instead treats
|
|
// it as normal Rust code.
|
|
// see auxiliary/makro.rs for how it is tested.
|
|
|
|
fn main() {}
|