mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 11:07:42 +00:00
Prefer add mod
declaration to lib.rs over file.rs in UnlinkedFile fix
This commit is contained in:
parent
77a447dcda
commit
c9e479870b
@ -63,7 +63,7 @@ impl DiagnosticWithFix for UnlinkedFile {
|
|||||||
// - `$dir.rs` in the parent folder, where `$dir` is the directory containing `self.file_id`
|
// - `$dir.rs` in the parent folder, where `$dir` is the directory containing `self.file_id`
|
||||||
let parent = our_path.parent()?;
|
let parent = our_path.parent()?;
|
||||||
let mut paths =
|
let mut paths =
|
||||||
vec![parent.join("mod.rs")?, parent.join("main.rs")?, parent.join("lib.rs")?];
|
vec![parent.join("mod.rs")?, parent.join("lib.rs")?, parent.join("main.rs")?];
|
||||||
|
|
||||||
// `submod/bla.rs` -> `submod.rs`
|
// `submod/bla.rs` -> `submod.rs`
|
||||||
if let Some(newmod) = (|| {
|
if let Some(newmod) = (|| {
|
||||||
|
Loading…
Reference in New Issue
Block a user