2023-02-23 11:27:06 -06:00
|
|
|
error[E0107]: trait takes 1 lifetime argument but 0 lifetime arguments were supplied
|
2019-05-28 13:46:13 -05:00
|
|
|
--> $DIR/unboxed-closure-sugar-region.rs:30:51
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | fn test2(x: &dyn Foo<(isize,),Output=()>, y: &dyn Foo(isize)) {
|
2021-01-02 12:45:11 -06:00
|
|
|
| ^^^ expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: trait defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/unboxed-closure-sugar-region.rs:10:7
|
|
|
|
|
|
|
|
|
LL | trait Foo<'a,T> {
|
|
|
|
| ^^^ --
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|