]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/new_without_default.stderr
Merge commit '7ea7cd165ad6705603852771bf82cc2fd6560db5' into clippyup2
[rust.git] / tests / ui / new_without_default.stderr
index 11ece5e87089ba1f412d209440a698b0305c1ab9..e529e441eb735c6b60cb59d5090fa5a22763bfdb 100644 (file)
@@ -1,40 +1,71 @@
-error: you should consider deriving a `Default` implementation for `Foo`
-  --> $DIR/new_without_default.rs:12:5
+error: you should consider adding a `Default` implementation for `Foo`
+  --> $DIR/new_without_default.rs:8:5
    |
-12 |     pub fn new() -> Foo { Foo }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+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
    |
-9  | #[derive(Default)]
+LL | impl Default for Foo {
+LL |     fn default() -> Self {
+LL |         Self::new()
+LL |     }
+LL | }
    |
 
-error: you should consider deriving a `Default` implementation for `Bar`
-  --> $DIR/new_without_default.rs:18:5
+error: you should consider adding a `Default` implementation for `Bar`
+  --> $DIR/new_without_default.rs:16:5
+   |
+LL | /     pub fn new() -> Self {
+LL | |         Bar
+LL | |     }
+   | |_____^
    |
-18 |     pub fn new() -> Self { Bar }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 help: try this
    |
-15 | #[derive(Default)]
+LL | impl Default for Bar {
+LL |     fn default() -> Self {
+LL |         Self::new()
+LL |     }
+LL | }
    |
 
 error: you should consider adding a `Default` implementation for `LtKo<'c>`
-  --> $DIR/new_without_default.rs:66:5
+  --> $DIR/new_without_default.rs:80:5
    |
-66 |     pub fn new() -> LtKo<'c> { unimplemented!() }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | /     pub fn new() -> LtKo<'c> {
+LL | |         unimplemented!()
+LL | |     }
+   | |_____^
+   |
+help: try this
+   |
+LL | impl Default for LtKo<'c> {
+LL |     fn default() -> Self {
+LL |         Self::new()
+LL |     }
+LL | }
+   |
+
+error: you should consider adding a `Default` implementation for `NewNotEqualToDerive`
+  --> $DIR/new_without_default.rs:157:5
+   |
+LL | /     pub fn new() -> Self {
+LL | |         NewNotEqualToDerive { foo: 1 }
+LL | |     }
+   | |_____^
    |
-   = note: `-D clippy::new-without-default` implied by `-D warnings`
 help: try this
    |
-65 | impl Default for LtKo<'c> {
-66 |     fn default() -> Self {
-67 |         Self::new()
-68 |     }
-69 | }
+LL | impl Default for NewNotEqualToDerive {
+LL |     fn default() -> Self {
+LL |         Self::new()
+LL |     }
+LL | }
    |
 
-error: aborting due to 3 previous errors
+error: aborting due to 4 previous errors