We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d80a9a commit af218d6Copy full SHA for af218d6
src/librustdoc/lib.rs
@@ -211,10 +211,10 @@ fn rust_input(cratefile: &str, matches: &getopts::Matches) -> Output {
211
let cfgs = matches.opt_strs("cfg");
212
let cr = Path::new(cratefile);
213
info!("starting to run rustc");
214
- let (crate, analysis) = do std::task::try {
+ let (crate, analysis) = std::task::try(proc() {
215
let cr = cr;
216
core::run_core(libs.move_iter().collect(), cfgs, &cr)
217
- }.unwrap();
+ }).unwrap();
218
info!("finished with rustc");
219
local_data::set(analysiskey, analysis);
220
0 commit comments