mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
211 B
Rust
16 lines
211 B
Rust
//@ known-bug: #123912
|
|
|
|
macro_rules! m {
|
|
($attr_path: path) => {
|
|
#[$attr_path]
|
|
fn f() {}
|
|
}
|
|
}
|
|
|
|
m!(inline<{
|
|
let a = CharCharFloat { a: 1 };
|
|
println!("a: {}", a);
|
|
}>);
|
|
|
|
fn main() {}
|