]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/attrs.rs
iterate List by value
[rust.git] / tests / ui / attrs.rs
index 314602b2b0bf7bfe12f1208104a30300734fa277..91b65a43be77fa5fdb3aa2a1fe66f2227347a7cf 100644 (file)
@@ -1,9 +1,6 @@
-#![feature(plugin)]
-#![plugin(clippy)]
-
-#![deny(inline_always, deprecated_semver)]
-
-#[inline(always)] //~ERROR you have declared `#[inline(always)]` on `test_attr_lint`.
+#![warn(clippy::inline_always, clippy::deprecated_semver)]
+#![allow(clippy::assertions_on_constants)]
+#[inline(always)]
 fn test_attr_lint() {
     assert!(true)
 }
@@ -20,22 +17,27 @@ fn false_positive_stmt() {
 
 #[inline(always)]
 fn empty_and_false_positive_stmt() {
-    ;
     unreachable!();
 }
 
-#[deprecated(since = "forever")] //~ERROR the since field must contain a semver-compliant version
-pub const SOME_CONST : u8 = 42;
+#[deprecated(since = "forever")]
+pub const SOME_CONST: u8 = 42;
 
-#[deprecated(since = "1")] //~ERROR the since field must contain a semver-compliant version
-pub const ANOTHER_CONST : u8 = 23;
+#[deprecated(since = "1")]
+pub const ANOTHER_CONST: u8 = 23;
 
 #[deprecated(since = "0.1.1")]
-pub const YET_ANOTHER_CONST : u8 = 0;
+pub const YET_ANOTHER_CONST: u8 = 0;
 
 fn main() {
     test_attr_lint();
-    if false { false_positive_expr() }
-    if false { false_positive_stmt() }
-    if false { empty_and_false_positive_stmt() }
+    if false {
+        false_positive_expr()
+    }
+    if false {
+        false_positive_stmt()
+    }
+    if false {
+        empty_and_false_positive_stmt()
+    }
 }