]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/new_without_default.stderr
iterate List by value
[rust.git] / tests / ui / new_without_default.stderr
index b37c1e1442456a3a90608b9706a9b3057d63159c..5e485d40663f3e9ffb3540ec912a470ed2cffa3f 100644 (file)
@@ -1,45 +1,45 @@
 error: you should consider deriving a `Default` implementation for `Foo`
-  --> $DIR/new_without_default.rs:17:5
+  --> $DIR/new_without_default.rs:8:5
    |
-17 | /     pub fn new() -> Foo {
-18 | |         Foo
-19 | |     }
+LL | /     pub fn new() -> Foo {
+LL | |         Foo
+LL | |     }
    | |_____^
    |
-   = note: `-D clippy::new-without-default-derive` implied by `-D warnings`
+   = note: `-D clippy::new-without-default` implied by `-D warnings`
 help: try this
    |
-14 | #[derive(Default)]
+LL | #[derive(Default)]
    |
 
 error: you should consider deriving a `Default` implementation for `Bar`
-  --> $DIR/new_without_default.rs:25:5
+  --> $DIR/new_without_default.rs:16:5
    |
-25 | /     pub fn new() -> Self {
-26 | |         Bar
-27 | |     }
+LL | /     pub fn new() -> Self {
+LL | |         Bar
+LL | |     }
    | |_____^
+   |
 help: try this
    |
-22 | #[derive(Default)]
+LL | #[derive(Default)]
    |
 
 error: you should consider adding a `Default` implementation for `LtKo<'c>`
-  --> $DIR/new_without_default.rs:89:5
+  --> $DIR/new_without_default.rs:80:5
    |
-89 | /     pub fn new() -> LtKo<'c> {
-90 | |         unimplemented!()
-91 | |     }
+LL | /     pub fn new() -> LtKo<'c> {
+LL | |         unimplemented!()
+LL | |     }
    | |_____^
    |
-   = note: `-D clippy::new-without-default` implied by `-D warnings`
 help: try this
    |
-88 | impl Default for LtKo<'c> {
-89 |     fn default() -> Self {
-90 |         Self::new()
-91 |     }
-92 | }
+LL | impl Default for LtKo<'c> {
+LL |     fn default() -> Self {
+LL |         Self::new()
+LL |     }
+LL | }
    |
 
 error: aborting due to 3 previous errors