]> git.lizzy.rs Git - rust.git/commitdiff
Remove `feature(tool_lints)` from tests
authorflip1995 <hello@philkrones.com>
Tue, 2 Oct 2018 08:44:49 +0000 (10:44 +0200)
committerManish Goregaokar <manishsmail@gmail.com>
Tue, 9 Oct 2018 23:38:38 +0000 (16:38 -0700)
src/test/run-pass/tool_lints.rs
src/test/run-pass/tool_lints_2018_preview.rs
src/test/ui-fulldeps/lint_tool_test.rs
src/test/ui/tool_lints-fail.rs
src/test/ui/tool_lints.rs
src/test/ui/unknown-lint-tool-name.rs

index 24ec43b12f60e259f169bead63dab5c6214b219b..2705c03598a0d2c2bb84560dadc96478e7740b2e 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(tool_lints)]
+
 #![deny(unknown_lints)]
 
 #[allow(clippy::almost_swapped)]
index 6cd57eaa195958d599ae1b32fa8df965eaaf212e..57df3e072a8dc988c56737177fd5e532223e10cd 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(tool_lints)]
+
 #![feature(rust_2018_preview)]
 #![deny(unknown_lints)]
 
index ebe10b3714f20fecf91988379b59d6d24e8f6710..11b70d1d7809cb20176513fe0e1c89982a46a228 100644 (file)
@@ -11,8 +11,8 @@
 // aux-build:lint_tool_test.rs
 // ignore-stage1
 // compile-flags: --cfg foo
+
 #![feature(plugin)]
-#![feature(tool_lints)]
 #![plugin(lint_tool_test)]
 #![allow(dead_code)]
 #![cfg_attr(foo, warn(test_lint))]
index ea1efab4cb6f87d8a4ec360f5aad74dd7ebdb386..4134fca1ce6caa31be3d148495cd73e50bef8388 100644 (file)
@@ -10,7 +10,7 @@
 
 // Don't allow tool_lints, which aren't scoped
 
-#![feature(tool_lints)]
+
 #![deny(unknown_lints)]
 
 #![deny(clippy)] //~ ERROR: unknown lint: `clippy`
index 71f90b17c18fcefd792a8d6a36ccbab0779db93d..001f2f11e5cb358c17d94222d0ba3fa9214fb956 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(tool_lints)]
+
 
 #[warn(foo::bar)]
 //~^ ERROR an unknown tool name found in scoped lint: `foo::bar`
index 78b736edcebe6e0699beae6d7deb7c789518718a..a1d6c27e518e514268c2221e2e611ea450161d77 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(tool_lints)]
+
 
 #![deny(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`