]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/attrs.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / attrs.rs
index 314602b2b0bf7bfe12f1208104a30300734fa277..413c30a194532d4ba00ebedfd834d0b587e01d8c 100644 (file)
@@ -1,9 +1,15 @@
-#![feature(plugin)]
-#![plugin(clippy)]
+// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
 
-#![deny(inline_always, deprecated_semver)]
+#![warn(clippy::inline_always, clippy::deprecated_semver)]
 
-#[inline(always)] //~ERROR you have declared `#[inline(always)]` on `test_attr_lint`.
+#[inline(always)]
 fn test_attr_lint() {
     assert!(true)
 }
@@ -20,22 +26,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()
+    }
 }