2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:17:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | S::<'static>(&0, &0);
|
2021-01-02 18:45:11 +00: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 12:28:26 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 2 lifetime arguments but 3 lifetime arguments were supplied
|
2021-01-02 18:45:11 +00:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:19:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | S::<'static, 'static, 'static>(&0, &0);
|
2021-02-18 20:01:44 +00:00
|
|
|
| ^ ------- help: remove this lifetime argument
|
2021-01-02 18:45:11 +00: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 12:28:26 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: enum takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2021-01-02 18:45:11 +00:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:22:8
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | E::V::<'static>(&0);
|
2021-01-02 18:45:11 +00: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 12:28:26 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: enum takes 2 lifetime arguments but 3 lifetime arguments were supplied
|
2021-01-02 18:45:11 +00:00
|
|
|
--> $DIR/constructor-lifetime-args.rs:24:8
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | E::V::<'static, 'static, 'static>(&0);
|
2021-02-18 20:01:44 +00:00
|
|
|
| ^ ------- help: remove this lifetime argument
|
2021-01-02 18:45:11 +00: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 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-08-22 01:12:23 +00:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|