-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Closed
Labels
C-enhancementCategory: An issue proposing an enhancement or a PR with one.Category: An issue proposing an enhancement or a PR with one.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Description
#![feature(rustc_private)]
extern crate rustc_driver;
use rustc_driver::{get_args, run, run_compiler, RustcDefaultCalls};
fn main() {
let mut calls = RustcDefaultCalls {};
run(move || {
println!("Works");
eprintln!("Doesn't work");
run_compiler(&get_args(), &mut calls, None, None)
});
}
Is this expected?
Metadata
Metadata
Assignees
Labels
C-enhancementCategory: An issue proposing an enhancement or a PR with one.Category: An issue proposing an enhancement or a PR with one.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.