Rustup to rustc 1.44.0-nightly (3712e11a8 2020-04-12)

This commit is contained in:
bjorn3 2020-04-13 13:30:39 +02:00
parent 287e70f1b4
commit 8daca65e47
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
nightly-2020-04-09
nightly-2020-04-13

View File

@ -169,7 +169,7 @@ pub(crate) fn get_function_name_and_sig<'tcx>(
inst: Instance<'tcx>,
support_vararg: bool,
) -> (String, Signature) {
assert!(!inst.substs.needs_infer() && !inst.substs.has_param_types());
assert!(!inst.substs.needs_infer());
let fn_sig =
tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &fn_sig_for_fn_abi(tcx, inst));
if fn_sig.c_variadic && !support_vararg {