2018-08-21 20:12:23 -05:00
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 1, found 2
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generic-arg-mismatch-recover.rs:6:20
|
2018-08-20 10:32:59 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Foo::<'static, 'static, ()>(&0);
|
2018-08-20 10:32:59 -05:00
|
|
|
| ^^^^^^^ unexpected lifetime argument
|
|
|
|
|
2018-08-21 20:12:23 -05:00
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 1, found 2
|
2020-01-20 17:59:17 -06:00
|
|
|
--> $DIR/generic-arg-mismatch-recover.rs:8:20
|
2018-08-20 10:32:59 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Bar::<'static, 'static, ()>(&());
|
2018-08-20 10:32:59 -05:00
|
|
|
| ^^^^^^^ unexpected lifetime argument
|
|
|
|
|
2018-08-21 20:12:23 -05:00
|
|
|
error[E0107]: wrong number of type arguments: expected 0, found 1
|
2020-01-20 17:59:17 -06:00
|
|
|
--> $DIR/generic-arg-mismatch-recover.rs:8:29
|
2018-08-20 10:32:59 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Bar::<'static, 'static, ()>(&());
|
2018-08-20 10:32:59 -05:00
|
|
|
| ^^ unexpected type argument
|
|
|
|
|
2020-01-20 17:59:17 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2018-08-20 10:32:59 -05:00
|
|
|
|
2020-01-20 17:59:17 -06:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|