mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
150 B
Rust
15 lines
150 B
Rust
// check-pass
|
|
|
|
macro_rules! m1 {
|
|
($tt:tt #) => ()
|
|
}
|
|
|
|
macro_rules! m2 {
|
|
($tt:tt) => ()
|
|
}
|
|
|
|
fn main() {
|
|
m1!(r#"abc"##);
|
|
m2!(r#"abc"#);
|
|
}
|