mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +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() {}
|