Skip to content

Commit 8daca65

Browse files
committed
Rustup to rustc 1.44.0-nightly (3712e11a8 2020-04-12)
1 parent 287e70f commit 8daca65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2020-04-09
1+
nightly-2020-04-13

src/abi/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub(crate) fn get_function_name_and_sig<'tcx>(
169169
inst: Instance<'tcx>,
170170
support_vararg: bool,
171171
) -> (String, Signature) {
172-
assert!(!inst.substs.needs_infer() && !inst.substs.has_param_types());
172+
assert!(!inst.substs.needs_infer());
173173
let fn_sig =
174174
tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &fn_sig_for_fn_abi(tcx, inst));
175175
if fn_sig.c_variadic && !support_vararg {

0 commit comments

Comments
 (0)