blob: 075e0e6fc8fc8d1cda35c282798ccae2957a04d3 [file] [log] [blame]
//@ known-bug: #123862
//@ needs-rustc-debug-assertions
macro_rules! pos {
() => {
(file![$($pos,)* pos!()], line!())
};
}
fn outer() {
inner_inlined(main_pos, pos!());
}
fn inner_inlined() {}