rust/tests/ui/constructor-lifetime-args.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
2.1 KiB
Plaintext
Raw Normal View History

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);
| ^ ------- 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
|
LL | S::<'static, 'static>(&0, &0);
| +++++++++
2018-08-08 12:28:26 +00:00
error[E0107]: struct takes 2 lifetime arguments but 3 lifetime arguments were supplied
--> $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
| |
| 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
error[E0107]: enum takes 2 lifetime arguments but 1 lifetime argument was supplied
--> $DIR/constructor-lifetime-args.rs:22:8
2018-08-08 12:28:26 +00:00
|
LL | E::V::<'static>(&0);
| ^ ------- 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
|
LL | E::V::<'static, 'static>(&0);
| +++++++++
2018-08-08 12:28:26 +00:00
error[E0107]: enum takes 2 lifetime arguments but 3 lifetime arguments were supplied
--> $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
| |
| 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`.