]> git.lizzy.rs Git - rust.git/commitdiff
Remove "#![feature(plugin)]" in the test".
authorPaul Florence <florencepaul@hotmail.fr>
Fri, 20 Oct 2017 13:53:39 +0000 (09:53 -0400)
committerPaul Florence <florencepaul@hotmail.fr>
Fri, 20 Oct 2017 14:17:41 +0000 (10:17 -0400)
clippy_lints/src/const_static_lifetime.rs
tests/ui/const_static_lifetime.rs
tests/ui/const_static_lifetime.stderr

index 4f2d86565329acedf1cde55d1525948d969e3277..4801f788856b8ed87fe15f6debfdb3acb3e52632 100644 (file)
@@ -39,7 +39,6 @@ fn visit_type(&mut self, ty: &Ty, cx: &EarlyContext) {
         match ty.node {
             // Be carefull of nested structures (arrays and tuples)
             TyKind::Array(ref ty, _) => {
-                println!("array");
                 self.visit_type(&*ty, cx);
             },
             TyKind::Tup(ref tup) => {
index 05b7a3e01176080ed200d280ff84fd3cf050ad79..d2caf59935e8b380ba69e1942a21e979fdf0b548 100644 (file)
@@ -1,5 +1,3 @@
-#![feature(plugin)]
-
 #[derive(Debug)]
 struct Foo {}
 
index a6fed5f58d29670a2f7d3177b6b17359d864aa57..8445e46758c4e16573fa1b888d7bc79997c208d0 100644 (file)
@@ -1,52 +1,50 @@
-warning: running cargo clippy on a crate that also imports the clippy plugin
-
 error: Constants have by default a `'static` lifetime
- --> $DIR/const_static_lifetime.rs:7:17
+ --> $DIR/const_static_lifetime.rs:4:17
   |
-7 | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static.
+4 | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static.
   |                 ^^^^^^^ help: consider removing `'static`: `&str`
   |
   = note: `-D const-static-lifetime` implied by `-D warnings`
 
 error: Constants have by default a `'static` lifetime
 --> $DIR/const_static_lifetime.rs:11:21
-   |
-11 | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
-   |                     ^^^^^^^ help: consider removing `'static`: `&str`
--> $DIR/const_static_lifetime.rs:8:21
+  |
+8 | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
+  |                     ^^^^^^^ help: consider removing `'static`: `&str`
 
 error: Constants have by default a `'static` lifetime
-  --> $DIR/const_static_lifetime.rs:13:32
+  --> $DIR/const_static_lifetime.rs:10:32
    |
-13 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
+10 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
    |                                ^^^^^^^ help: consider removing `'static`: `&str`
 
 error: Constants have by default a `'static` lifetime
-  --> $DIR/const_static_lifetime.rs:13:47
+  --> $DIR/const_static_lifetime.rs:10:47
    |
-13 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
+10 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
    |                                               ^^^^^^^ help: consider removing `'static`: `&str`
 
 error: Constants have by default a `'static` lifetime
-  --> $DIR/const_static_lifetime.rs:15:30
+  --> $DIR/const_static_lifetime.rs:12:30
    |
-15 | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static
+12 | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static
    |                              ^^^^^^^ help: consider removing `'static`: `&str`
 
 error: Constants have by default a `'static` lifetime
-  --> $DIR/const_static_lifetime.rs:17:17
+  --> $DIR/const_static_lifetime.rs:14:17
    |
-17 | const VAR_SIX: &'static u8 = &5;
+14 | const VAR_SIX: &'static u8 = &5;
    |                 ^^^^^^^ help: consider removing `'static`: `&u8`
 
 error: Constants have by default a `'static` lifetime
-  --> $DIR/const_static_lifetime.rs:19:39
+  --> $DIR/const_static_lifetime.rs:16:39
    |
-19 | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
+16 | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
    |                                       ^^^^^^^ help: consider removing `'static`: `&str`
 
 error: Constants have by default a `'static` lifetime
-  --> $DIR/const_static_lifetime.rs:21:20
+  --> $DIR/const_static_lifetime.rs:18:20
    |
-21 | const VAR_HEIGHT: &'static Foo = &Foo {};
+18 | const VAR_HEIGHT: &'static Foo = &Foo {};
    |                    ^^^^^^^ help: consider removing `'static`: `&Foo`