Auto merge of #47047 - EdSchouten:rt-unused-import, r=estebank

Remove an unused import for cfg(not(feature = "backtrace")).

The 'mem' module is not used for this specific code. This was
copy-pasted in by accident when adding RFC 1937 (? in main) support.
This commit is contained in:
bors 2017-12-28 21:53:50 +00:00
commit b84385b23b

View File

@ -36,8 +36,6 @@ fn lang_start_internal(main: &(Fn() -> i32 + Sync + ::panic::RefUnwindSafe),
use sys_common;
use sys_common::thread_info;
use thread::Thread;
#[cfg(not(feature = "backtrace"))]
use mem;
sys::init();