diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2018-10-11 12:16:22 +0200 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2018-10-11 12:16:22 +0200 |
| commit | b8654eaa6c4c4abaed9b8e448445b992c87bb41e (patch) | |
| tree | cf9127650966949e8aed9189ad73ae2a59751627 /src | |
| parent | 8b45dd704b974fb9c6d8ea58330ca893154cb5db (diff) | |
| download | rust-b8654eaa6c4c4abaed9b8e448445b992c87bb41e.tar.gz rust-b8654eaa6c4c4abaed9b8e448445b992c87bb41e.zip | |
Stabilize tool lints
Diffstat (limited to 'src')
| -rw-r--r-- | src/driver.rs | 2 | ||||
| -rw-r--r-- | src/lib.rs | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/driver.rs b/src/driver.rs index 0619b3ae0d9..6af0f0be190 100644 --- a/src/driver.rs +++ b/src/driver.rs @@ -11,7 +11,7 @@ // error-pattern:yummy #![feature(box_syntax)] #![feature(rustc_private)] -#![feature(tool_lints)] + #![feature(try_from)] #![allow(unknown_lints, clippy::missing_docs_in_private_items)] diff --git a/src/lib.rs b/src/lib.rs index 58158f92e65..62c9da03278 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ // error-pattern:cargo-clippy #![feature(plugin_registrar)] #![feature(rustc_private)] -#![feature(tool_lints)] + #![allow(unknown_lints)] #![allow(clippy::missing_docs_in_private_items)] #![warn(rust_2018_idioms)] diff --git a/src/main.rs b/src/main.rs index 11c259b4d6b..efdcc42dea3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ // error-pattern:yummy #![feature(box_syntax)] #![feature(rustc_private)] -#![feature(tool_lints)] + #![allow(unknown_lints, clippy::missing_docs_in_private_items)] use rustc_tools_util::*; |
