Skip to content

Commit afbd735

Browse files
authored
Rollup merge of #135256 - onur-ozkan:weird-mod-position, r=clubby789,jieyouxu
Move `mod cargo` below the import statements Just caught that during a [bootstrap reading-club](https://rust-lang.zulipchat.com/#narrow/channel/326414-t-infra.2Fbootstrap/topic/.5BBRC.5D.20How.20do.20Steps.20and.20Paths.20work.3F) session.
2 parents 07a2995 + 61bda87 commit afbd735

File tree

1 file changed

+2
-2
lines changed
  • src/bootstrap/src/core/builder

1 file changed

+2
-2
lines changed

src/bootstrap/src/core/builder/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
mod cargo;
2-
31
use std::any::{Any, type_name};
42
use std::cell::{Cell, RefCell};
53
use std::collections::BTreeSet;
@@ -25,6 +23,8 @@ use crate::utils::exec::{BootstrapCommand, command};
2523
use crate::utils::helpers::{self, LldThreads, add_dylib_path, exe, libdir, linker_args, t};
2624
use crate::{Build, Crate};
2725

26+
mod cargo;
27+
2828
#[cfg(test)]
2929
mod tests;
3030

0 commit comments

Comments
 (0)