Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions compiler/rustc_middle/src/ty/typeck_results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,7 @@ pub struct TypeckResults<'tcx> {
coercion_casts: ItemLocalSet,

/// Set of trait imports actually used in the method resolution.
/// This is used for warning unused imports. During type
/// checking, this `Arc` should not be cloned: it must have a ref-count
/// of 1 so that we can insert things into the set mutably.
/// This is used for warning unused imports.
pub used_trait_imports: UnordSet<LocalDefId>,

/// If any errors occurred while type-checking this body,
Expand Down
Loading