2018-08-21 20:12:23 -05:00
|
|
|
error[E0107]: wrong number of type arguments: expected 0, found 1
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-sugar-wrong-trait.rs:5:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f<F:Trait(isize) -> isize>(x: F) {}
|
2018-08-20 18:16:17 -05:00
|
|
|
| ^^^^^^^ unexpected type argument
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0220]: associated type `Output` not found for `Trait`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-sugar-wrong-trait.rs:5:24
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f<F:Trait(isize) -> isize>(x: F) {}
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^ associated type `Output` not found
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-08-21 20:12:23 -05:00
|
|
|
Some errors occurred: E0107, E0220.
|
|
|
|
For more information about an error, try `rustc --explain E0107`.
|