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 ac8eaa1 commit d7fa2eeCopy full SHA for d7fa2ee
src/lib.rs
@@ -24,6 +24,11 @@ extern crate rustc_parse;
24
extern crate rustc_session;
25
extern crate rustc_span;
26
27
+// Necessary to pull in object code as the rest of the rustc crates are shipped only as rmeta
28
+// files.
29
+#[allow(unused_extern_crates)]
30
+extern crate rustc_driver;
31
+
32
use std::cell::RefCell;
33
use std::collections::HashMap;
34
use std::fmt;
0 commit comments