]> git.lizzy.rs Git - rust.git/blobdiff - src/driver.rs
deps: bump toml from 0.4 to 0.5
[rust.git] / src / driver.rs
index 82326bf780cfbf726b3835bbba4a014be5e5b938..834d11861c0d58540e9420c82f64a41f379f1399 100644 (file)
@@ -1,7 +1,4 @@
-// error-pattern:yummy
-#![feature(box_syntax)]
 #![feature(rustc_private)]
-#![allow(clippy::missing_docs_in_private_items)]
 
 // FIXME: switch to something more ergonomic here, once available.
 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
@@ -96,7 +93,7 @@ fn after_parsing(&mut self, compiler: &interface::Compiler) -> bool {
             ls.register_early_pass(Some(sess), true, false, pass);
         }
         for pass in late_lint_passes {
-            ls.register_late_pass(Some(sess), true, pass);
+            ls.register_late_pass(Some(sess), true, false, false, pass);
         }
 
         for (name, (to, deprecated_name)) in lint_groups {