2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:13:11
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | buzz: Buzz<'a>,
|
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/E0107.rs:2:8
|
|
|
|
|
|
|
|
|
LL | struct Buzz<'a, 'b>(&'a str, &'b str);
|
|
|
|
| ^^^^ -- --
|
|
|
|
help: add missing lifetime argument
|
|
|
|
|
|
2021-02-18 20:01:44 +00:00
|
|
|
LL | buzz: Buzz<'a, 'a>,
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: enum takes 0 lifetime arguments but 1 lifetime argument was supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:17:10
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | bar: Bar<'a>,
|
2021-01-02 18:45:11 +00:00
|
|
|
| ^^^---- help: remove these generics
|
|
|
|
| |
|
|
|
|
| expected 0 lifetime arguments
|
|
|
|
|
|
|
|
|
note: enum defined here, with 0 lifetime parameters
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:6:6
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
|
|
|
LL | enum Bar {
|
|
|
|
| ^^^
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:21:11
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | foo2: Foo<'a, 'b, 'c>,
|
2021-02-18 20:01:44 +00:00
|
|
|
| ^^^ ------ help: remove these lifetime arguments
|
2021-01-02 18:45:11 +00:00
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/E0107.rs:1:8
|
|
|
|
|
|
|
|
|
LL | struct Foo<'a>(&'a str);
|
|
|
|
| ^^^ --
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 1 lifetime argument but 2 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:25:11
|
|
|
|
|
|
|
|
|
LL | qux1: Qux<'a, 'b, i32>,
|
|
|
|
| ^^^ -- help: remove this lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/E0107.rs:3:8
|
|
|
|
|
|
|
|
|
LL | struct Qux<'a, T>(&'a T);
|
|
|
|
| ^^^ --
|
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 1 lifetime argument but 2 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:29:11
|
|
|
|
|
|
|
|
|
LL | qux2: Qux<'a, i32, 'b>,
|
|
|
|
| ^^^ -- help: remove this lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/E0107.rs:3:8
|
|
|
|
|
|
|
|
|
LL | struct Qux<'a, T>(&'a T);
|
|
|
|
| ^^^ --
|
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:33:11
|
|
|
|
|
|
|
|
|
LL | qux3: Qux<'a, 'b, 'c, i32>,
|
|
|
|
| ^^^ ------ help: remove these lifetime arguments
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/E0107.rs:3:8
|
|
|
|
|
|
|
|
|
LL | struct Qux<'a, T>(&'a T);
|
|
|
|
| ^^^ --
|
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:37:11
|
|
|
|
|
|
|
|
|
LL | qux4: Qux<'a, i32, 'b, 'c>,
|
|
|
|
| ^^^ ------ help: remove these lifetime arguments
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/E0107.rs:3:8
|
|
|
|
|
|
|
|
|
LL | struct Qux<'a, T>(&'a T);
|
|
|
|
| ^^^ --
|
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:41:11
|
|
|
|
|
|
|
|
|
LL | qux5: Qux<'a, 'b, i32, 'c>,
|
|
|
|
| ^^^ -- help: remove this lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/E0107.rs:3:8
|
|
|
|
|
|
|
|
|
LL | struct Qux<'a, T>(&'a T);
|
|
|
|
| ^^^ --
|
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 0 lifetime arguments but 2 lifetime arguments were supplied
|
2021-05-16 14:54:14 +00:00
|
|
|
--> $DIR/E0107.rs:45:11
|
|
|
|
|
|
|
|
|
LL | quux: Quux<'a, i32, 'b>,
|
|
|
|
| ^^^^ -- help: remove this lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 0 lifetime arguments
|
|
|
|
|
|
|
|
|
note: struct defined here, with 0 lifetime parameters
|
|
|
|
--> $DIR/E0107.rs:4:8
|
|
|
|
|
|
|
|
|
LL | struct Quux<T>(T);
|
|
|
|
| ^^^^
|
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: trait takes 0 generic arguments but 2 generic arguments were supplied
|
2022-03-27 18:45:08 +00:00
|
|
|
--> $DIR/E0107.rs:55:27
|
|
|
|
|
|
|
|
|
LL | fn trait_bound_generic<I: T<u8, u16>>(_i: I) {
|
|
|
|
| ^ expected 0 generic arguments
|
|
|
|
|
|
|
|
|
note: trait defined here, with 0 generic parameters
|
|
|
|
--> $DIR/E0107.rs:50:11
|
|
|
|
|
|
|
|
|
LL | pub trait T {
|
|
|
|
| ^
|
|
|
|
help: replace the generic bounds with the associated types
|
|
|
|
|
|
|
|
|
LL | fn trait_bound_generic<I: T<A = u8, B = u16>>(_i: I) {
|
2022-08-26 17:23:21 +00:00
|
|
|
| +++ +++
|
2022-03-27 18:45:08 +00:00
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|