提交 eef34a64 编写于 作者: L lcnr

stop suggesting things inside of macros

上级 f1836c45
......@@ -532,6 +532,22 @@ enum InferSourceKind<'tcx> {
},
}
impl<'tcx> InferSource<'tcx> {
/// Returns the span where we're going to insert our suggestion.
///
/// Used when computing the cost of this infer source to check whether
/// we're inside of a macro expansion.
fn main_insert_span(&self) -> Span {
match self.kind {
InferSourceKind::LetBinding { insert_span, .. } => insert_span,
InferSourceKind::ClosureArg { insert_span, .. } => insert_span,
InferSourceKind::GenericArg { insert_span, .. } => insert_span,
InferSourceKind::FullyQualifiedMethodCall { receiver, .. } => receiver.span,
InferSourceKind::ClosureReturn { data, .. } => data.span(),
}
}
}
impl<'tcx> InferSourceKind<'tcx> {
fn ty_msg(&self, infcx: &InferCtxt<'_, 'tcx>) -> String {
match *self {
......@@ -638,7 +654,7 @@ fn ty_cost(self, ty: Ty<'tcx>) -> usize {
// The sources are listed in order of preference here.
let tcx = self.infcx.tcx;
let ctx = CostCtxt { tcx };
match source.kind {
let base_cost = match source.kind {
InferSourceKind::LetBinding { ty, .. } => ctx.ty_cost(ty),
InferSourceKind::ClosureArg { ty, .. } => ctx.ty_cost(ty),
InferSourceKind::GenericArg { def_id, generic_args, .. } => {
......@@ -655,7 +671,12 @@ fn ty_cost(self, ty: Ty<'tcx>) -> usize {
InferSourceKind::ClosureReturn { ty, should_wrap_expr, .. } => {
30 + ctx.ty_cost(ty) + if should_wrap_expr.is_some() { 10 } else { 0 }
}
}
};
let suggestion_may_apply =
if source.main_insert_span().can_be_used_for_suggestions() { 0 } else { 10000 };
base_cost + suggestion_may_apply
}
/// Uses `fn source_cost` to determine whether this inference source is preferable to
......
error[E0282]: type annotations needed
--> $DIR/cannot_infer_local_or_vec_in_tuples.rs:2:18
error[E0282]: type annotations needed for `(Vec<T>,)`
--> $DIR/cannot_infer_local_or_vec_in_tuples.rs:2:9
|
LL | let (x, ) = (vec![], );
| ^^^^^^ cannot infer type of the type parameter `T` declared on the struct `Vec`
| ^^^^^
|
= note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider specifying the generic argument
--> $SRC_DIR/alloc/src/macros.rs:LL:COL
help: consider giving this pattern a type, where the type for type parameter `T` is specified
|
LL | $crate::__rust_force_expr!($crate::vec::Vec::<T>::new())
| +++++
LL | let (x, ): (Vec<T>,) = (vec![], );
| +++++++++++
error: aborting due to previous error
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册