Resolve: stop requiring that use declarations precede statements in blocks
This commit is contained in:
parent
54475e950c
commit
f05bc16a5d
@ -2508,29 +2508,6 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
// Check for imports appearing after non-item statements.
|
||||
let mut found_non_item = false;
|
||||
for statement in &block.stmts {
|
||||
if let hir::StmtDecl(ref declaration, _) = statement.node {
|
||||
if let hir::DeclItem(i) = declaration.node {
|
||||
let i = self.ast_map.expect_item(i.id);
|
||||
match i.node {
|
||||
ItemExternCrate(_) | ItemUse(_) if found_non_item => {
|
||||
span_err!(self.session,
|
||||
i.span,
|
||||
E0154,
|
||||
"imports are not allowed after non-item statements");
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
} else {
|
||||
found_non_item = true
|
||||
}
|
||||
} else {
|
||||
found_non_item = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Descend into the block.
|
||||
intravisit::walk_block(self, block);
|
||||
|
||||
|
@ -14,5 +14,4 @@ fn main() {
|
||||
let bar = 5;
|
||||
//~^ ERROR declaration of `bar` shadows an enum variant or unit-like struct in scope
|
||||
use foo::bar;
|
||||
//~^ ERROR imports are not allowed after non-item statements
|
||||
}
|
||||
|
@ -15,6 +15,5 @@ mod bar {
|
||||
fn main() {
|
||||
let foo = || false;
|
||||
use bar::foo;
|
||||
//~^ ERROR imports are not allowed after non-item statements
|
||||
assert_eq!(foo(), false);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user