Skip to content

Commit 4bbe970

Browse files
committed
review + rebase
1 parent 6970547 commit 4bbe970

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

compiler/rustc_lint/src/internal.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ use crate::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext}
55
use rustc_ast as ast;
66
use rustc_errors::Applicability;
77
use rustc_hir::def::Res;
8-
use rustc_hir::*;
8+
use rustc_hir::{Expr, ExprKind, GenericArg, Path, PathSegment, QPath};
9+
use rustc_hir::{HirId, Item, ItemKind, Node, Ty, TyKind};
910
use rustc_middle::ty;
1011
use rustc_session::{declare_lint_pass, declare_tool_lint};
1112
use rustc_span::hygiene::{ExpnKind, MacroKind};
@@ -75,10 +76,10 @@ impl LateLintPass<'_> for QueryStability {
7576
}
7677

7778
let (span, def_id, substs) = match expr.kind {
78-
ExprKind::MethodCall(_, span, _, _)
79+
ExprKind::MethodCall(segment, _, _)
7980
if let Some(def_id) = cx.typeck_results().type_dependent_def_id(expr.hir_id) =>
8081
{
81-
(span, def_id, cx.typeck_results().node_substs(expr.hir_id))
82+
(segment.ident.span, def_id, cx.typeck_results().node_substs(expr.hir_id))
8283
},
8384
_ => {
8485
let &ty::FnDef(def_id, substs) =

compiler/rustc_passes/src/check_attr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ impl CheckAttrVisitor<'_> {
487487
fn check_rustc_must_implement_one_of(
488488
&self,
489489
attr: &Attribute,
490-
span: &Span,
490+
span: Span,
491491
target: Target,
492492
) -> bool {
493493
match target {
@@ -496,7 +496,7 @@ impl CheckAttrVisitor<'_> {
496496
self.tcx
497497
.sess
498498
.struct_span_err(attr.span, "attribute can only be applied to a trait")
499-
.span_label(*span, "not a trait")
499+
.span_label(span, "not a trait")
500500
.emit();
501501
false
502502
}

0 commit comments

Comments
 (0)