We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 287e70f commit 8daca65Copy full SHA for 8daca65
rust-toolchain
@@ -1 +1 @@
1
-nightly-2020-04-09
+nightly-2020-04-13
src/abi/mod.rs
@@ -169,7 +169,7 @@ pub(crate) fn get_function_name_and_sig<'tcx>(
169
inst: Instance<'tcx>,
170
support_vararg: bool,
171
) -> (String, Signature) {
172
- assert!(!inst.substs.needs_infer() && !inst.substs.has_param_types());
+ assert!(!inst.substs.needs_infer());
173
let fn_sig =
174
tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &fn_sig_for_fn_abi(tcx, inst));
175
if fn_sig.c_variadic && !support_vararg {
0 commit comments