提交 8457ab61 编写于 作者: M Manish Goregaokar 提交者: GitHub

Rollup merge of #36882 - jseyfried:fix_36881, r=eddyb

resolve: fix incorrect code in `module_to_string`

Fixes #36881.
r? @nrc or @EddyB
......@@ -3534,7 +3534,7 @@ fn collect_mod(names: &mut Vec<ast::Name>, module: Module) {
} else {
// danger, shouldn't be ident?
names.push(token::intern("<opaque>"));
collect_mod(names, module);
collect_mod(names, module.parent.unwrap());
}
}
collect_mod(&mut names, module);
......
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
fn main() {
extern crate rand;
use rand::Rng; //~ ERROR unresolved import
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册