rust/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.stderr

17 lines
614 B
Plaintext
Raw Normal View History

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
|
2018-02-22 18:42:32 -06:00
LL | fn f<F:Trait(isize) -> isize>(x: F) {}
| ^^^^^^^ unexpected type argument
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
|
2018-02-22 18:42:32 -06:00
LL | fn f<F:Trait(isize) -> isize>(x: F) {}
| ^^^^^ associated type `Output` not found
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0107, E0220.
2018-08-21 20:12:23 -05:00
For more information about an error, try `rustc --explain E0107`.