2023-02-23 10:27:06 -07:00
|
|
|
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:17:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | S::<'static>(&0, &0);
|
2021-01-02 19:45:11 +01:00
|
|
|
| ^ ------- supplied 1 lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 2 lifetime arguments
|
|
|
|
|
|
|
|
|
note: struct defined here, with 2 lifetime parameters: `'a`, `'b`
|
|
|
|
--> $DIR/constructor-lifetime-args.rs:9:8
|
|
|
|
|
|
|
|
|
LL | struct S<'a, 'b>(&'a u8, &'b u8);
|
|
|
|
| ^ -- --
|
|
|
|
help: add missing lifetime argument
|
|
|
|
|
|
2022-11-06 09:45:34 +00:00
|
|
|
LL | S::<'static, 'static>(&0, &0);
|
|
|
|
| +++++++++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-02-23 10:27:06 -07:00
|
|
|
error[E0107]: struct takes 2 lifetime arguments but 3 lifetime arguments were supplied
|
2021-01-02 19:45:11 +01:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:19:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | S::<'static, 'static, 'static>(&0, &0);
|
2021-02-18 21:01:44 +01:00
|
|
|
| ^ ------- help: remove this lifetime argument
|
2021-01-02 19:45:11 +01:00
|
|
|
| |
|
|
|
|
| expected 2 lifetime arguments
|
|
|
|
|
|
|
|
|
note: struct defined here, with 2 lifetime parameters: `'a`, `'b`
|
|
|
|
--> $DIR/constructor-lifetime-args.rs:9:8
|
|
|
|
|
|
|
|
|
LL | struct S<'a, 'b>(&'a u8, &'b u8);
|
|
|
|
| ^ -- --
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-02-23 10:27:06 -07:00
|
|
|
error[E0107]: enum takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2021-01-02 19:45:11 +01:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:22:8
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | E::V::<'static>(&0);
|
2021-01-02 19:45:11 +01:00
|
|
|
| ^ ------- supplied 1 lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 2 lifetime arguments
|
|
|
|
|
|
|
|
|
note: enum defined here, with 2 lifetime parameters: `'a`, `'b`
|
|
|
|
--> $DIR/constructor-lifetime-args.rs:10:6
|
|
|
|
|
|
|
|
|
LL | enum E<'a, 'b> {
|
|
|
|
| ^ -- --
|
|
|
|
help: add missing lifetime argument
|
|
|
|
|
|
2022-11-06 09:45:34 +00:00
|
|
|
LL | E::V::<'static, 'static>(&0);
|
|
|
|
| +++++++++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-02-23 10:27:06 -07:00
|
|
|
error[E0107]: enum takes 2 lifetime arguments but 3 lifetime arguments were supplied
|
2021-01-02 19:45:11 +01:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:24:8
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | E::V::<'static, 'static, 'static>(&0);
|
2021-02-18 21:01:44 +01:00
|
|
|
| ^ ------- help: remove this lifetime argument
|
2021-01-02 19:45:11 +01:00
|
|
|
| |
|
|
|
|
| expected 2 lifetime arguments
|
|
|
|
|
|
|
|
|
note: enum defined here, with 2 lifetime parameters: `'a`, `'b`
|
|
|
|
--> $DIR/constructor-lifetime-args.rs:10:6
|
|
|
|
|
|
|
|
|
LL | enum E<'a, 'b> {
|
|
|
|
| ^ -- --
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-08-21 21:12:23 -04:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|