rust/tests/crashes/123862.rs

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

15 lines
216 B
Rust
Raw Normal View History

2024-11-08 20:32:40 +00:00
//@ known-bug: #123862
//@ needs-rustc-debug-assertions
macro_rules! pos {
() => {
(file![$($pos,)* pos!()], line!())
};
}
fn outer() {
inner_inlined(main_pos, pos!());
}
fn inner_inlined() {}