]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.stderr
Rollup merge of #86828 - lambinoo:67441-const-fn-copied-take-replace, r=joshtriplett
[rust.git] / src / test / ui / unboxed-closures / unboxed-closure-sugar-wrong-trait.stderr
1 error[E0107]: this trait takes 0 generic arguments but 1 generic argument was supplied
2   --> $DIR/unboxed-closure-sugar-wrong-trait.rs:5:8
3    |
4 LL | fn f<F:Trait(isize) -> isize>(x: F) {}
5    |        ^^^^^------- help: remove these parenthetical generics
6    |        |
7    |        expected 0 generic arguments
8    |
9 note: trait defined here, with 0 generic parameters
10   --> $DIR/unboxed-closure-sugar-wrong-trait.rs:3:7
11    |
12 LL | trait Trait {}
13    |       ^^^^^
14
15 error[E0220]: associated type `Output` not found for `Trait`
16   --> $DIR/unboxed-closure-sugar-wrong-trait.rs:5:24
17    |
18 LL | fn f<F:Trait(isize) -> isize>(x: F) {}
19    |                        ^^^^^ associated type `Output` not found
20
21 error: aborting due to 2 previous errors
22
23 Some errors have detailed explanations: E0107, E0220.
24 For more information about an error, try `rustc --explain E0107`.