2018-08-07 17:53:43 +00:00
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0107.rs:11:11
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | buzz: Buzz<'a>,
|
2018-08-07 17:53:43 +00:00
|
|
|
| ^^^^^^^^ expected 2 lifetime arguments
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2018-08-07 17:53:43 +00:00
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 0, found 1
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0107.rs:14:14
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | bar: Bar<'a>,
|
2018-08-20 11:52:56 +00:00
|
|
|
| ^^ unexpected lifetime argument
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2018-08-07 17:53:43 +00:00
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 1, found 3
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0107.rs:17:19
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | foo2: Foo<'a, 'b, 'c>,
|
2018-11-09 01:51:13 +00:00
|
|
|
| ^^ ^^ unexpected lifetime argument
|
|
|
|
| |
|
|
|
|
| unexpected lifetime argument
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|