]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/miri/src/lib.rs
Auto merge of #107372 - JohnTitor:rollup-zkl2ges, r=JohnTitor
[rust.git] / src / tools / miri / src / lib.rs
index 97750cb78cdcb9ae19fea8ce13521c081aa3c519..7024927b20561e81f78a432107f579afa683474c 100644 (file)
 extern crate rustc_span;
 extern crate rustc_target;
 
+// Necessary to pull in object code as the rest of the rustc crates are shipped only as rmeta
+// files.
+#[allow(unused_extern_crates)]
+extern crate rustc_driver;
+
 mod borrow_tracker;
 mod clock;
 mod concurrency;