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 1561954 commit 57f0514Copy full SHA for 57f0514
src/libcore/panicking.rs
@@ -86,7 +86,7 @@ pub fn panic_fmt(fmt: fmt::Arguments, file_line_col: &(&'static str, u32, u32))
86
extern {
87
#[lang = "panic_fmt"]
88
#[unwind]
89
- fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32, col :u32) -> !;
+ fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32, col: u32) -> !;
90
}
91
let (file, line, col) = *file_line_col;
92
unsafe { panic_impl(fmt, file, line, col) }
0 commit comments