Skip to content

Commit

Permalink
Fix imports, remove attrs for unused_*
Browse files Browse the repository at this point in the history
  • Loading branch information
compiler-errors committed Feb 10, 2025
1 parent 28164e3 commit f78099e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions compiler/rustc_builtin_macros/src/contracts.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
#![allow(unused_imports, unused_variables)]

use rustc_ast::token;
use rustc_ast::tokenstream::{DelimSpacing, DelimSpan, Spacing, TokenStream, TokenTree};
use rustc_errors::ErrorGuaranteed;
use rustc_expand::base::{AttrProcMacro, ExtCtxt};
use rustc_span::symbol::{Ident, Symbol, kw, sym};
use rustc_span::{DesugaringKind, Span};
use rustc_span::Span;
use rustc_span::symbol::{Ident, Symbol, kw};

pub(crate) struct ExpandRequires;

Expand Down

0 comments on commit f78099e

Please sign in to comment.