]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/new_without_default.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / new_without_default.stderr
index 24df4607b19ff8b1401718ad1e0d2c46ac8c8305..9157f60a7e49b81be42e2f4d91bf4bfe4f4b8be5 100644 (file)
@@ -1,47 +1,44 @@
 error: you should consider deriving a `Default` implementation for `Foo`
-  --> $DIR/new_without_default.rs:10:5
+  --> $DIR/new_without_default.rs:17:5
    |
-10 |     pub fn new() -> Foo { Foo }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | /     pub fn new() -> Foo {
+LL | |         Foo
+LL | |     }
+   | |_____^
    |
-note: lint level defined here
-  --> $DIR/new_without_default.rs:5:30
-   |
-5  | #![deny(new_without_default, new_without_default_derive)]
-   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^
+   = note: `-D clippy::new-without-default` implied by `-D warnings`
 help: try this
-   | #[derive(Default)]
-   | pub struct Foo;
+   |
+LL | #[derive(Default)]
+   |
 
 error: you should consider deriving a `Default` implementation for `Bar`
-  --> $DIR/new_without_default.rs:16:5
-   |
-16 |     pub fn new() -> Self { Bar }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  --> $DIR/new_without_default.rs:25:5
    |
+LL | /     pub fn new() -> Self {
+LL | |         Bar
+LL | |     }
+   | |_____^
 help: try this
-   | #[derive(Default)]
-   | pub struct Bar;
+   |
+LL | #[derive(Default)]
+   |
 
 error: you should consider adding a `Default` implementation for `LtKo<'c>`
-  --> $DIR/new_without_default.rs:64:5
+  --> $DIR/new_without_default.rs:89:5
    |
-64 |     pub fn new() -> LtKo<'c> { unimplemented!() }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | /     pub fn new() -> LtKo<'c> {
+LL | |         unimplemented!()
+LL | |     }
+   | |_____^
+help: try this
    |
-note: lint level defined here
-  --> $DIR/new_without_default.rs:5:9
+LL | impl Default for LtKo<'c> {
+LL |     fn default() -> Self {
+LL |         Self::new()
+LL |     }
+LL | }
    |
-5  | #![deny(new_without_default, new_without_default_derive)]
-   |         ^^^^^^^^^^^^^^^^^^^
-help: try this
-   |     impl Default for LtKo<'c> {
-   |         fn default() -> Self {
-   |             Self::new()
-   |         }
-   |     }
-   | 
-...
 
 error: aborting due to 3 previous errors