We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f0eae commit f49f157Copy full SHA for f49f157
src/libcore/macros.rs
@@ -33,8 +33,8 @@ macro_rules! fail(
33
// up with the number of calls to fail!()
34
#[inline(always)]
35
fn run_fmt(fmt: &::std::fmt::Arguments) -> ! {
36
- static file_line: (&'static str, uint) = (file!(), line!());
37
- ::core::failure::begin_unwind(fmt, &file_line)
+ static FILE_LINE: (&'static str, uint) = (file!(), line!());
+ ::core::failure::begin_unwind(fmt, &FILE_LINE)
38
}
39
format_args!(run_fmt, $fmt, $($arg)*)
40
});
0 commit comments