mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
15 lines
216 B
Rust
15 lines
216 B
Rust
![]() |
//@ known-bug: #123862
|
||
|
//@ needs-rustc-debug-assertions
|
||
|
|
||
|
macro_rules! pos {
|
||
|
() => {
|
||
|
(file![$($pos,)* pos!()], line!())
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn outer() {
|
||
|
inner_inlined(main_pos, pos!());
|
||
|
}
|
||
|
|
||
|
fn inner_inlined() {}
|