]> git.lizzy.rs Git - rust.git/blobdiff - tests/needless_continue_helpers.rs
Fix `use_self` false positive on `use` statements
[rust.git] / tests / needless_continue_helpers.rs
index 0fcef5180302549630dc56956b784e9b7d257f37..662ae110845a506bcd022792d33f4d91eb1ccb43 100644 (file)
@@ -1,10 +1,23 @@
+// 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.
+
+
+
+
 // Tests for the various helper functions used by the needless_continue
 // lint that don't belong in utils.
+
 extern crate clippy_lints;
-use clippy_lints::needless_continue::{erode_from_back, erode_block, erode_from_front};
+use clippy_lints::needless_continue::{erode_block, erode_from_back, erode_from_front};
 
 #[test]
-#[cfg_attr(rustfmt, rustfmt_skip)]
+#[rustfmt::skip]
 fn test_erode_from_back() {
     let input = "\
 {
@@ -22,7 +35,7 @@ fn test_erode_from_back() {
 }
 
 #[test]
-#[cfg_attr(rustfmt, rustfmt_skip)]
+#[rustfmt::skip]
 fn test_erode_from_back_no_brace() {
     let input = "\
 let x = 5;
@@ -34,7 +47,7 @@ fn test_erode_from_back_no_brace() {
 }
 
 #[test]
-#[cfg_attr(rustfmt, rustfmt_skip)]
+#[rustfmt::skip]
 fn test_erode_from_front() {
     let input = "
         {
@@ -53,7 +66,7 @@ fn test_erode_from_front() {
 }
 
 #[test]
-#[cfg_attr(rustfmt, rustfmt_skip)]
+#[rustfmt::skip]
 fn test_erode_from_front_no_brace() {
     let input = "
             something();
@@ -68,9 +81,8 @@ fn test_erode_from_front_no_brace() {
     assert_eq!(expected, got);
 }
 
-
 #[test]
-#[cfg_attr(rustfmt, rustfmt_skip)]
+#[rustfmt::skip]
 fn test_erode_block() {
 
     let input = "
@@ -86,4 +98,3 @@ fn test_erode_block() {
     println!("input: {}\nexpected:\n{}\ngot:\n{}", input, expected, got);
     assert_eq!(expected, got);
 }
-