about summary refs log tree commit diff
path: root/src/libstd/rt.rs
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2017-06-27 04:26:52 +0200
committerest31 <MTest31@outlook.com>2017-07-02 13:53:29 +0200
commitda887074fc70a9f8d2afec8dbe6e2eeea6fc1406 (patch)
tree8c9777a4efcf37736d7ef89aa6f273c61968a5ac /src/libstd/rt.rs
parentc3a130cffca55c650c4a6d2de77c3138cf74c3f8 (diff)
downloadrust-da887074fc70a9f8d2afec8dbe6e2eeea6fc1406.tar.gz
rust-da887074fc70a9f8d2afec8dbe6e2eeea6fc1406.zip
Output line column info when panicking
Diffstat (limited to 'src/libstd/rt.rs')
-rw-r--r--src/libstd/rt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt.rs b/src/libstd/rt.rs
index 06fd838ea06..2ee63527c14 100644
--- a/src/libstd/rt.rs
+++ b/src/libstd/rt.rs
@@ -25,7 +25,7 @@
 
 
 // Reexport some of our utilities which are expected by other crates.
-pub use panicking::{begin_panic, begin_panic_fmt, update_panic_count};
+pub use panicking::{begin_panic_new, begin_panic, begin_panic_fmt, update_panic_count};
 
 #[cfg(not(test))]
 #[lang = "start"]