rust/tests/ui/unboxed-closures/unboxed-closure-sugar-region.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
561 B
Plaintext
Raw Normal View History

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)) {
| ^^^ 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`.