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
563 B
Plaintext
Raw Normal View History

error[E0107]: trait takes 1 lifetime argument but 0 lifetime arguments were supplied
2019-05-28 18:46:13 +00:00
--> $DIR/unboxed-closure-sugar-region.rs:30:51
2018-08-08 12:28:26 +00:00
|
2019-05-28 18:46:13 +00: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 12:28:26 +00:00
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0107`.