From 32e445af7499fa470961f30750942398bf51d198 Mon Sep 17 00:00:00 2001 From: Rejyr Date: Fri, 19 Aug 2022 20:04:21 -0400 Subject: [PATCH] hotfix: add missing import --- compiler/rustc_lint/src/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_lint/src/errors.rs b/compiler/rustc_lint/src/errors.rs index 4738e8e82b6..2d7ec992f2b 100644 --- a/compiler/rustc_lint/src/errors.rs +++ b/compiler/rustc_lint/src/errors.rs @@ -1,5 +1,5 @@ use rustc_macros::{SessionDiagnostic, SessionSubdiagnostic}; -use rustc_span::Span; +use rustc_span::{Span, Symbol}; #[derive(SessionDiagnostic)] #[error(lint::malformed_attribute, code = "E0452")]