granite-rust/src/test/ui/methods/method-call-lifetime-args-fail.stderr

196 lines
7.4 KiB
Text
Raw Normal View History

2018-08-21 21:12:23 -04:00
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:16:7
2018-08-08 14:28:26 +02:00
|
LL | S.early::<'static>();
2018-08-20 00:08:01 +01:00
| ^^^^^ expected 2 lifetime arguments
2018-08-08 14:28:26 +02:00
2018-08-21 21:12:23 -04:00
error[E0107]: wrong number of lifetime arguments: expected 2, found 3
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:18:33
2018-08-08 14:28:26 +02:00
|
LL | S.early::<'static, 'static, 'static>();
2018-08-20 12:52:56 +01:00
| ^^^^^^^ unexpected lifetime argument
2018-08-08 14:28:26 +02:00
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:27:15
2018-08-08 14:28:26 +02:00
|
LL | S::late::<'static>(S, &0, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:4:13
2018-08-08 14:28:26 +02:00
|
LL | fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
| ^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:29:15
2018-08-08 14:28:26 +02:00
|
LL | S::late::<'static, 'static>(S, &0, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:4:13
2018-08-08 14:28:26 +02:00
|
LL | fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
| ^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:31:15
2018-08-08 14:28:26 +02:00
|
LL | S::late::<'static, 'static, 'static>(S, &0, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:4:13
2018-08-08 14:28:26 +02:00
|
LL | fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
| ^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:34:21
2018-08-08 14:28:26 +02:00
|
LL | S::late_early::<'static, 'static>(S, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:7:19
2018-08-08 14:28:26 +02:00
|
LL | fn late_early<'a, 'b>(self, _: &'a u8) -> &'b u8 { loop {} }
| ^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:36:21
2018-08-08 14:28:26 +02:00
|
LL | S::late_early::<'static, 'static, 'static>(S, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:7:19
2018-08-08 14:28:26 +02:00
|
LL | fn late_early<'a, 'b>(self, _: &'a u8) -> &'b u8 { loop {} }
| ^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:40:24
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit::<'static>(S, &0, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:5:31
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit(self, _: &u8, _: &u8) {}
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:42:24
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit::<'static, 'static>(S, &0, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:5:31
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit(self, _: &u8, _: &u8) {}
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:44:24
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit::<'static, 'static, 'static>(S, &0, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:5:31
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit(self, _: &u8, _: &u8) {}
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:47:30
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit_early::<'static, 'static>(S, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:8:41
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit_early<'b>(self, _: &u8) -> &'b u8 { loop {} }
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:49:30
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit_early::<'static, 'static, 'static>(S, &0);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:8:41
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit_early<'b>(self, _: &u8) -> &'b u8 { loop {} }
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:52:35
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit_self_early::<'static, 'static>(&S);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:9:37
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit_self_early<'b>(&self) -> &'b u8 { loop {} }
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:54:35
2018-08-08 14:28:26 +02:00
|
LL | S::late_implicit_self_early::<'static, 'static, 'static>(&S);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:9:37
2018-08-08 14:28:26 +02:00
|
LL | fn late_implicit_self_early<'b>(&self) -> &'b u8 { loop {} }
| ^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:57:28
2018-08-08 14:28:26 +02:00
|
LL | S::late_unused_early::<'static, 'static>(S);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:10:26
2018-08-08 14:28:26 +02:00
|
LL | fn late_unused_early<'a, 'b>(self) -> &'b u8 { loop {} }
| ^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:59:28
2018-08-08 14:28:26 +02:00
|
LL | S::late_unused_early::<'static, 'static, 'static>(S);
| ^^^^^^^
|
note: the late bound lifetime parameter is introduced here
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:10:26
2018-08-08 14:28:26 +02:00
|
LL | fn late_unused_early<'a, 'b>(self) -> &'b u8 { loop {} }
| ^^
2018-08-21 21:12:23 -04:00
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:63:5
2018-08-08 14:28:26 +02:00
|
LL | S::early::<'static>(S);
2018-08-20 00:08:01 +01:00
| ^^^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
2018-08-08 14:28:26 +02:00
2018-08-21 21:12:23 -04:00
error[E0107]: wrong number of lifetime arguments: expected 2, found 3
2018-12-25 08:56:47 -07:00
--> $DIR/method-call-lifetime-args-fail.rs:65:34
2018-08-08 14:28:26 +02:00
|
LL | S::early::<'static, 'static, 'static>(S);
2018-08-20 12:52:56 +01:00
| ^^^^^^^ unexpected lifetime argument
2018-08-08 14:28:26 +02:00
error: aborting due to 18 previous errors
2018-08-21 21:12:23 -04:00
For more information about this error, try `rustc --explain E0107`.