mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
12 lines
128 B
Rust
12 lines
128 B
Rust
//@ check-pass
|
|
|
|
//! [macro@m!] //~ WARN: unresolved link to `m`
|
|
|
|
//issue#126986
|
|
|
|
macro_rules! m {
|
|
() => {};
|
|
}
|
|
|
|
fn main() {}
|