]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/type-alias-impl-trait/issue-74280.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / type-alias-impl-trait / issue-74280.stderr
index 7a22b360a31d0b1f160ec93e34ec5aa254918725..573e691b4cc077f1aad00083d45da012fc598454 100644 (file)
@@ -3,7 +3,7 @@ error[E0308]: mismatched types
    |
 LL | type Test = impl Copy;
    |             --------- the expected opaque type
-LL | 
+LL |
 LL | fn test() -> Test {
    |              ---- expected `Test` because of return type
 LL |     let y = || -> Test { () };