Skip to content

Commit dc54752

Browse files
committed
Review fixes
1 parent 4ced272 commit dc54752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_resolve/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ use std::cell::{Cell, RefCell};
6767
use std::cmp;
6868
use std::collections::BTreeSet;
6969
use std::fmt;
70+
use std::iter;
7071
use std::mem::replace;
7172
use std::rc::Rc;
7273

@@ -1413,8 +1414,7 @@ impl<'a> hir::lowering::Resolver for Resolver<'a> {
14131414
}
14141415

14151416
fn resolve_str_path(&mut self, span: Span, crate_root: Option<&str>,
1416-
components: &[&str], is_value: bool) -> hir::Path {
1417-
use std::iter;
1417+
components: &[&str], is_value: bool) -> hir::Path {
14181418
let mut path = hir::Path {
14191419
span,
14201420
def: Def::Err,

0 commit comments

Comments
 (0)