]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_session/lib.rs
Rollup merge of #67867 - matthewjasper:opaque-assoc-lookup, r=oli-obk
[rust.git] / src / librustc_session / lib.rs
index 9d7c23100a0fe518fe579172af24276cdee6ae69..65d6635adad004bd952bccffd5028cc3115850f7 100644 (file)
@@ -1,9 +1,10 @@
+#![feature(crate_visibility_modifier)]
 #![feature(test)]
 
 // Use the test crate here so we depend on getopts through it. This allow tools to link to both
 // librustc_session and libtest.
-extern crate test as _;
 extern crate getopts;
+extern crate test as _;
 
 pub mod cgu_reuse_tracker;
 pub mod utils;
 pub mod parse;
 
 mod code_stats;
+#[macro_use]
 pub mod config;
 pub mod filesearch;
+mod options;
 pub mod search_paths;
 
 mod session;