mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
15 lines
151 B
Rust
15 lines
151 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
macro_rules! m1 {
|
||
|
($tt:tt #) => ()
|
||
|
}
|
||
|
|
||
|
macro_rules! m2 {
|
||
|
($tt:tt) => ()
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
m1!(r#"abc"##);
|
||
|
m2!(r#"abc"#);
|
||
|
}
|