Files
rust/tests/ui/lifetimes/constructor-lifetime-early-binding-error.stderr

68 lines
2.2 KiB
Plaintext
Raw Normal View History

error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:13:5
2018-08-08 14:28:26 +02:00
|
LL | S::<'static>(&0, &0);
| ^ ------- supplied 1 lifetime argument
| |
| expected 2 lifetime arguments
|
note: struct defined here, with 2 lifetime parameters: `'a`, `'b`
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:5:8
|
LL | struct S<'a, 'b>(&'a u8, &'b u8);
| ^ -- --
help: add missing lifetime argument
|
LL | S::<'static, 'static>(&0, &0);
| +++++++++
2018-08-08 14:28:26 +02:00
error[E0107]: struct takes 2 lifetime arguments but 3 lifetime arguments were supplied
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:15:5
2018-08-08 14:28:26 +02:00
|
LL | S::<'static, 'static, 'static>(&0, &0);
2024-07-22 22:51:53 +00:00
| ^ --------- help: remove the lifetime argument
| |
| expected 2 lifetime arguments
|
note: struct defined here, with 2 lifetime parameters: `'a`, `'b`
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:5:8
|
LL | struct S<'a, 'b>(&'a u8, &'b u8);
| ^ -- --
2018-08-08 14:28:26 +02:00
error[E0107]: enum takes 2 lifetime arguments but 1 lifetime argument was supplied
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:18:8
2018-08-08 14:28:26 +02:00
|
LL | E::V::<'static>(&0);
| ^ ------- supplied 1 lifetime argument
| |
| expected 2 lifetime arguments
|
note: enum defined here, with 2 lifetime parameters: `'a`, `'b`
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:6:6
|
LL | enum E<'a, 'b> {
| ^ -- --
help: add missing lifetime argument
|
LL | E::V::<'static, 'static>(&0);
| +++++++++
2018-08-08 14:28:26 +02:00
error[E0107]: enum takes 2 lifetime arguments but 3 lifetime arguments were supplied
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:20:8
2018-08-08 14:28:26 +02:00
|
LL | E::V::<'static, 'static, 'static>(&0);
2024-07-22 22:51:53 +00:00
| ^ --------- help: remove the lifetime argument
| |
| expected 2 lifetime arguments
|
note: enum defined here, with 2 lifetime parameters: `'a`, `'b`
2025-06-06 23:29:49 +05:00
--> $DIR/constructor-lifetime-early-binding-error.rs:6: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`.