]> 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 9157f60a7e49b81be42e2f4d91bf4bfe4f4b8be5..5e485d40663f3e9ffb3540ec912a470ed2cffa3f 100644 (file)
@@ -1,5 +1,5 @@
 error: you should consider deriving a `Default` implementation for `Foo`
-  --> $DIR/new_without_default.rs:17:5
+  --> $DIR/new_without_default.rs:8:5
    |
 LL | /     pub fn new() -> Foo {
 LL | |         Foo
@@ -13,24 +13,26 @@ 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
    |
 LL | /     pub fn new() -> Self {
 LL | |         Bar
 LL | |     }
    | |_____^
+   |
 help: try this
    |
 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
    |
 LL | /     pub fn new() -> LtKo<'c> {
 LL | |         unimplemented!()
 LL | |     }
    | |_____^
+   |
 help: try this
    |
 LL | impl Default for LtKo<'c> {