]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/liveness/liveness-return-last-stmt-semi.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / liveness / liveness-return-last-stmt-semi.stderr
index 2497d93daa494628cbd367d3247addec99c8ae49..93249fd5aff571c67fa614bc9f479879fb98b7ff 100644 (file)
@@ -9,9 +9,6 @@ LL | macro_rules! test { () => { fn foo() -> i32 { 1; } } }
 ...
 LL |     test!();
    |     -------- in this macro invocation
-   |
-   = note: expected type `i32`
-              found type `()`
 
 error[E0308]: mismatched types
   --> $DIR/liveness-return-last-stmt-semi.rs:7:19
@@ -20,9 +17,6 @@ LL | fn no_return() -> i32 {}
    |    ---------      ^^^ expected i32, found ()
    |    |
    |    implicitly returns `()` as its body has no tail or `return` expression
-   |
-   = note: expected type `i32`
-              found type `()`
 
 error[E0308]: mismatched types
   --> $DIR/liveness-return-last-stmt-semi.rs:9:19
@@ -33,9 +27,6 @@ LL | fn bar(x: u32) -> u32 {
    |    implicitly returns `()` as its body has no tail or `return` expression
 LL |     x * 2;
    |          - help: consider removing this semicolon
-   |
-   = note: expected type `u32`
-              found type `()`
 
 error[E0308]: mismatched types
   --> $DIR/liveness-return-last-stmt-semi.rs:13:19
@@ -44,9 +35,6 @@ LL | fn baz(x: u64) -> u32 {
    |    ---            ^^^ expected u32, found ()
    |    |
    |    implicitly returns `()` as its body has no tail or `return` expression
-   |
-   = note: expected type `u32`
-              found type `()`
 
 error: aborting due to 4 previous errors