]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/typeck/issue-80779.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / typeck / issue-80779.stderr
index aca494520f8b2a1b6bb95a602d6927d13d32739a..5a695fecc29dc7f4e4fbcb136988070be8c69b67 100644 (file)
@@ -1,4 +1,4 @@
-error[E0121]: the type placeholder `_` is not allowed within types on item signatures
+error[E0121]: the type placeholder `_` is not allowed within types on item signatures for return types
   --> $DIR/issue-80779.rs:10:28
    |
 LL | pub fn g(_: T<'static>) -> _ {}
@@ -7,7 +7,7 @@ LL | pub fn g(_: T<'static>) -> _ {}
    |                            not allowed in type signatures
    |                            help: replace with the correct return type: `()`
 
-error[E0121]: the type placeholder `_` is not allowed within types on item signatures
+error[E0121]: the type placeholder `_` is not allowed within types on item signatures for return types
   --> $DIR/issue-80779.rs:5:29
    |
 LL | pub fn f<'a>(val: T<'a>) -> _ {