Skip to content

Commit c6ffcd0

Browse files
authored
Merge pull request #509 from solson/rustup
fix for latest nightly
2 parents c62fa57 + a8af5ae commit c6ffcd0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2018-11-03
1+
nightly-2018-11-04

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ pub fn create_ecx<'a, 'mir: 'a, 'tcx: 'mir>(
8989
if libstd_has_mir {
9090
let start_id = tcx.lang_items().start_fn().unwrap();
9191
let main_ret_ty = tcx.fn_sig(main_id).output();
92-
let main_ret_ty = main_ret_ty.no_late_bound_regions().unwrap();
92+
let main_ret_ty = main_ret_ty.no_bound_vars().unwrap();
9393
let start_instance = ty::Instance::resolve(
9494
ecx.tcx.tcx,
9595
ty::ParamEnv::reveal_all(),

xargo/Xargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[dependencies.std]
2-
features = ["panic_unwind", "jemalloc", "backtrace"]
2+
features = ["panic_unwind", "backtrace"]
33

44
[dependencies.test]
55
stage = 1

0 commit comments

Comments
 (0)