rust/tests/crashes/123911.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
252 B
Rust
Raw Normal View History

2024-04-16 23:01:07 +00:00
//@ known-bug: #123911
macro_rules! m {
($attr_path: path) => {
#[$attr_path]
fn f() {}
}
}
m!(inline<{
let a = CharCharFloat { a: 1 };
let b = rustrt::rust_dbg_abi_4(a);
println!("a: {}", b.a);
}>);
fn main() {}