about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
diff options
context:
space:
mode:
authorUjjawal <ujjawal4046@gmail.com>2022-04-11 19:18:30 +0530
committerGitHub <noreply@github.com>2022-04-11 22:48:30 +0900
commitede045c69ddc588bc60c01757e514aa2088a126f (patch)
treec84fd31fcd90f068ed176dad3a2a44947960cbd2 /src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
parent21fb9308bbd63484e246297c8f815d81e86c4ce7 (diff)
downloadrust-ede045c69ddc588bc60c01757e514aa2088a126f.tar.gz
rust-ede045c69ddc588bc60c01757e514aa2088a126f.zip
Update examples with 1.61.0-nightly (latest version) (#1330)
Co-authored-by: Ujjawal Kumar <u.kumar@ukumar-ltmit1s.internal.salesforce.com>
Diffstat (limited to 'src/doc/rustc-dev-guide/examples/rustc-driver-example.rs')
-rw-r--r--src/doc/rustc-dev-guide/examples/rustc-driver-example.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs b/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
index 29fa24784ff..7177a286892 100644
--- a/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
+++ b/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
@@ -3,7 +3,7 @@
 // NOTE: For the example to compile, you will need to first run the following:
 //   rustup component add rustc-dev
 
-// version: 1.53.0-nightly (9b0edb7fd 2021-03-27)
+// version: 1.61.0-nightly (68369a041 2022-02-22)
 
 extern crate rustc_error_codes;
 extern crate rustc_errors;
@@ -15,7 +15,7 @@ extern crate rustc_span;
 
 use rustc_errors::registry;
 use rustc_hash::{FxHashMap, FxHashSet};
-use rustc_session::config;
+use rustc_session::config::{self, CheckCfg};
 use rustc_span::source_map;
 use std::path;
 use std::process;
@@ -36,6 +36,7 @@ fn main() {
         },
         // cfg! configuration in addition to the default ones
         crate_cfg: FxHashSet::default(), // FxHashSet<(String, Option<String>)>
+        crate_check_cfg: CheckCfg::default(), // CheckCfg
         input: config::Input::Str {
             name: source_map::FileName::Custom("main.rs".to_string()),
             input: "static HELLO: &str = \"Hello, world!\"; fn main() { println!(\"{}\", HELLO); }"
@@ -46,8 +47,6 @@ fn main() {
         output_file: None, // Option<PathBuf>
         file_loader: None, // Option<Box<dyn FileLoader + Send + Sync>>
         diagnostic_output: rustc_session::DiagnosticOutput::Default,
-        // Set to capture stderr output during compiler execution
-        stderr: None,                    // Option<Arc<Mutex<Vec<u8>>>>
         lint_caps: FxHashMap::default(), // FxHashMap<lint::LintId, lint::Level>
         // This is a callback from the driver that is called when [`ParseSess`] is created.
         parse_sess_created: None, //Option<Box<dyn FnOnce(&mut ParseSess) + Send>>