]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/generic-associated-types/issue-68645-codegen-fulfillment.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / generic-associated-types / issue-68645-codegen-fulfillment.stderr
index b2a2636d3eb9b4e5a64aac311951abeadd892264..35a4350804e8b59e714d7970f0486d41e560b34a 100644 (file)
@@ -1,17 +1,19 @@
 error[E0277]: expected a `Fn<()>` closure, found `T`
   --> $DIR/issue-68645-codegen-fulfillment.rs:14:5
    |
-LL |     type F<'a>: Fn() -> u32;
-   |                 ----------- required by this bound in `Fun::F`
-...
 LL |     type F<'a> = Self;
    |     ^^^^^^^^^^^^^^^^^^ expected an `Fn<()>` closure, found `T`
    |
    = note: wrap the `T` in a closure with no arguments: `|| { /* code */ }`
+note: required by a bound in `Fun::F`
+  --> $DIR/issue-68645-codegen-fulfillment.rs:6:17
+   |
+LL |     type F<'a>: Fn() -> u32;
+   |                 ^^^^^^^^^^^ required by this bound in `Fun::F`
 help: consider restricting type parameter `T`
    |
 LL | impl<T: std::ops::Fn<()>> Fun for T {
-   |       ^^^^^^^^^^^^^^^^^^
+   |       ++++++++++++++++++
 
 error: aborting due to previous error